1/* Change the white to any color ;) */
2input:-webkit-autofill,
3input:-webkit-autofill:hover,
4input:-webkit-autofill:focus,
5input:-webkit-autofill:active {
6 -webkit-box-shadow: 0 0 0 30px white inset !important;
7}
8
1/*Change text in autofill textbox*/
2input:-webkit-autofill {
3 -webkit-text-fill-color: yellow !important;
4}
5