This is in your style sheet and this particular item is left to some default and why it renders differently in various browsers, as they each process a bit differently;
To force the color that you want (white), find this code in your stylesheet:
Code:
LEGEND {
font-weight: bold;
padding: 0.3em;
}
and add the red hilighted code, save and replace and you should be good to go:
Code:
LEGEND {
font-weight: bold;
color: #FFFFFF;
padding: 0.3em;
}
The other item you might be looking to change is the color of "Forgot Your Password?" and is contained in these 4 conditions, also in the stylesheet.css:
Code:
a:link {
color: #006699;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #006699;
}
a:hover {
color: #990000;
}
a:active {
color: #FFFFFF;
}
Where #006699 is a shade of blue and the hover color is a red, change the colors to another html value that you prefer.