Hi,
I had the same problem. Seems to be something to do with the template css.
All the other input sections uses type=”text”. The email field uses type=”email” Styles for fields with type=”email” doesn’t seem to be set up.
Using Firebug I see you have the previous field css as
input[type=”text”], input[type=”password”], textarea
{
background: none repeat scroll 0 0 #FAFAFA;
border: 2px solid #DDDDDD;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1) inset;
color: #888888;
}
So i think you can set
input[type=”email“], input[type=”password”], textarea
and apply the same styles and it should be good.
Hope that works.