Change "remember Me" Box Color

Normally I just use Firebug to find where the CSS I need changed but it seems everything is stored in the cache now so I am confused on how to change this. If you go to https://fastdecals.com/shop/index.php?dispatch=auth.login_form&return_url=index.phpand look at the "Remember Me" box you can see it is illegible since it is light gray letters on a white background. All I want to do is make that box black (or clear) so you can read it. What is the easiest way to do this?

Just add the following code to the CSS section of the Theme editor

#login_pass .buttons-container {
    background: transparent;
}

http://prntscr.com/fn4zzs

Just add the following code to the CSS section of the Theme editor

#login_pass .buttons-container {
    background: transparent;
}

http://prntscr.com/fn4zzs

Thanks! I knew there had to be an easy way.

You are welcome!