If you're asking how to change the styles like Normal and SubHead that it picks up from the core styles then do this:
Go to your login page, look at the source. Find the login module. There should be a div around it with an ID looking something like this: dnn_ctr523_Login_pnlLogin or dnn_ctr_Login_pnlLogin
Copy that then use it to target those core classes like this:
#dnn_ctr_Login_pnlLogin .SubHead{color:red}
One useful thing you can do is remove the help icons using this:
#dnn_ctr_Login_pnlLogin img{display:none}
Rob