After the body tag, Wordpress is outputting the site url & site name in the Login page (wp-login.php). I think do_action( 'login_head' ); is responsible somehow but not sure how to modify this without touching the core file.
Update
While browsing through the functions.php file, i discovered the code below and there where filters echoing the problematic text. Commented the echos out and woohoo. Done
if ( !function_exists( 'jh_wp_login_url' ) ) {
function jh_wp_login_url() {
//echo home_url();
}
} add_filter('login_headerurl', 'jh_wp_login_url');
if ( !function_exists( 'jh_wp_login_title' ) ) {
function jh_wp_login_title() {
//echo get_option('blogname');
}
} add_filter('login_headertitle', 'jh_wp_login_title');