Simply paste the following code snippet into your functions.php file. Title text can be customized on line 2.
function custom_login_title() { return 'Your desired text'; } add_filter('login_headertitle', 'custom_login_title');
Thanks to Dave Clements for this code!