I am talking about logo on top of this login form:

There are multiple ways to change the WordPress logo on the admin login page. We can change it using code to the Theme’s functions.php file.
To change (or replace) the WordPress logo we need to modify the CSS styles related to this heading:
Powered by WordPress
As you can see in the code above, WordPress has a logo link which is inside the h1 tag. WordPress then styles using CSS to set and display the WordPress logo as a background image.
WordPress has tons of functions for e.g. get_posts, apply_filters, add_filter just to name a few.
To insert the CSS style, we can use the login_enqueue_scripts hook. Using that style we replace the logo with ours.
Use this code to change the logo:
function my_login_logo() {
...
//add style here
...
}
add_action( 'login_enqueue_scripts', 'my_login_logo' );
#login h1 a,
.login h1 a {
background-image : url(wp-contents/themes/your-theme/images/site-login-logo.png);
height : 65px;
width : 320px;
background-size : 320px 65px;
background-repeat: no-repeat;
padding-bottom : 30px;
}
Since you’re adding style in a file without a .css extension, you need to specify the type of the code and then add the code inside these tags:
Just like this code screen capture:

In the code above, change the file named logo.png with your logo file name. Also, put your logo in a directory named /img in your active Theme files.
WordPress suggests that the size of the logo should not be bigger than 80px by 80px but we can change that using the style in the code above as per our needs.
How to add website homepage link to the login page logo?
We can also change the link so that we can direct users on click on the logo image.
Use this hook to change the link. Make sure to add the code below after the logo change code we saw above.
function my_login_logo_url() {
return home_url();
}
add_filter( 'login_headerurl', 'my_login_logo_url' );
function my_login_logo_url_title() {
return 'Your Site Name and Info';
}
add_filter( 'login_headertitle', 'my_login_logo_url_title' );
Credit goes to WP Docs
functions hook login logo wp-admin