Is there a way to make the background color of my input transparent when the browser autocompletes my form? Currently, it looks like the image I've attached. Does anyone know how to achieve this?
I attempted to use the code below, but the background color ended up being white and the borders remained styled with the default yellow. I also want the text color to be white.
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0px 1000px white inset;
}
This is the current appearance:
Any help would be greatly appreciated :)