I've come across several solutions, but none have been able to solve my issue so far.
The text fields in question look like this:
.form-wrapper .field-list .field .field-element{
background-color: rgba(0,0,0,0.5);
color: rgba(255,255,255,255);
}
When applied, the style changes the background of the text fields to a semi-transparent black and the text color to white. However, when clicking on a field, the black becomes plain white. Any suggestions on how to maintain consistency with the original styling? Your help is appreciated.
NOTE
I've also tried using the following code snippet:
#inputId:-webkit-autofill {
background-color: white !important;
}
Unfortunately, this method did not work for me.