Custom CSS for the login page and create wp-login.css in your theme folder
function wpfme_loginCSS() {
echo '<link rel="stylesheet" type="text/css" href="'.get_bloginfo('template_directory').'/wp-login.css"/>';;
}
add_action('login_head', 'wpfme_loginCSS');