I'm trying to delete autofill background from input with this css:
input:-internal-autofill-selected,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
background-color: #fff !important;
}
Styles are giving to the input, but background don't change. How to fix this problem?