I have a form that keeps coloring an input background green, even though I seem to have done everything I can to make it white:

HTML

Chrome Computed Style

Does anyone understand what's going on?
Thanks
I have a form that keeps coloring an input background green, even though I seem to have done everything I can to make it white:

HTML

Chrome Computed Style

Does anyone understand what's going on?
Thanks
 
    
    i think you should use simple CSS style to fix it.
.password:hover,.password:focus,.password:target,.password:active{
    background:#fff;
}
