/* Estilos para el autofill */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.1) inset !important;
    transition: background-color 5000s ease-in-out 0s;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
}

/* Para Firefox */
input:autofill,
textarea:autofill,
select:autofill {
    background: rgba(255, 255, 255, 0.1) !important;
    -webkit-text-fill-color: #fff !important;
    color: #fff !important;
}

/* Para Edge */
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    background: rgba(255, 255, 255, 0.1) !important;
    -webkit-text-fill-color: #fff !important;
    color: #fff !important;
}
