Change Login Form Stylesheet

functions.php

/*////////////////////////////////////////////////
 //
 //	Change login form style
 //
 ////////////////////////////////////////////////*/

function pmo_login_stylesheet() {
    wp_enqueue_style( 'pmo-login', get_stylesheet_directory_uri() . '/assets/css/login-form.css' );
}
add_action( 'login_enqueue_scripts', 'pmo_login_stylesheet' );