.input_container {
    width: 100%;
    /* height: fit-content; */
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin: 25px 0 10px;
}
.input_label {
    font-size: 0.1.2rem;
    color: var(--cor-preto);
    font-weight: 600;
}
.icon {
    width: 15px;
    position: absolute;
    z-index: 99;
    left: 12px;
    bottom: 9px;
}
.input_field {
    font-size: 16px;
    width: auto;
    height: 40px;
    padding: 0 0 0 40px;
    outline: none;
    border: 1px solid #ffffff;
    filter: drop-shadow(0px 2px 0px #dfdfdf)
    drop-shadow(0px 1px 0.5px rgba(239, 239, 239, 0.5));
    transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
}
.input_field:focus, .input_field:valid{
    filter: drop-shadow(0px 2px 0px var(--cor-azul-escuro))
    drop-shadow(0px 1px 0.5px rgba(239, 239, 239, 0.5));
}

