Custom stylesheet not loading

Try using below code in your themes functions.php file:

// custom login for theme
function my_loginlcustomization() {
    echo '<link rel="stylesheet" type="text/css" href="' . get_bloginfo('stylesheet_directory') . '/login/login-styles.css" />';
}

add_action('login_head', 'my_loginlcustomization');