/* Change "white" to any color you want, or transparent. */
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0 1000px white inset !important;
}
/* transparent background */
input:-webkit-autofill {
-webkit-transition-delay: 9999s;
-webkit-transition: color 9999s ease-out, background-color 9999s ease-out;
}
references: https://css-tricks.com/snippets/css/change-autocomplete-styles-webkit-browsers/ https://stackoverflow.com/questions/2920306/google-chrome-form-autofill-and-its-yellow-background
Better solution: USE Firefox