/* Estilos para corrigir o autofill */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #343a40 inset !important;
    box-shadow: 0 0 0 1000px #343a40 inset !important;
    -webkit-text-fill-color: #fff !important;
    caret-color: #fff !important;
    transition: background-color 9999s ease-out, color 9999s ease-out !important;
    background-clip: text;
    animation-name: autofill-fix;
    animation-fill-mode: both;
    animation-duration: 0.1s;
}

@keyframes autofill-fix {
    0% { color: #fff; }
    100% { color: #fff; }
}
