What the default WordPress Admin login page looks like
The standard WordPress admin page is not easily customizable out of the box from WordPress. However, if you have a customer that requires a change of logo and color scheme, it’s relatively easy to do it without installing a plugin.
Few changes in your functions.php
// First, let's redirect that logo to our homepage
add_filter('login_headerurl', fn () => home_url());
// Second, lets add the style we want:
add_action( 'login_enqueue_scripts',
function ()
{
?>
That's it!
Now we have a branded WordPress Admin login page!