/* PAGE BACKGROUND */
body.login {
    background: #a9d9e8; /* light blue */
    font-family: "Inter", sans-serif;
}

/* REMOVE DEFAULT WORDPRESS LOGIN STYLES */
.login form, 
#login {
    box-shadow: none !important;
    width: 480px !important;
}

/* LOGO */
.login h1, 
.login h1 a {
    background: none !important;
}

.login h1 {
    padding-bottom: 20px;
}

.login h1 a {
    display: block;
    background-image: url('YOUR_LOGO_URL_HERE'); 
    background-size: contain;
    background-repeat: no-repeat;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

/* LOGIN CONTAINER */
#loginform {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px !important;
    border: 1px solid #eaeaea !important;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
    width: 360px !important;
    margin: 30px auto !important;
}

/* LABELS */
.login label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* INPUT FIELDS */
.login form .input, 
.login input[type="text"], 
.login input[type="password"] {
    background: #f9f9f9 !important;
    border-radius: 10px !important;
    border: 1px solid #dcdcdc !important;
    padding: 12px 14px !important;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1) !important;
    font-size: 14px !important;
}

/* PASSWORD VISIBILITY ICON */
.wp-pwd .button.wp-hide-pw {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    top: 2px;
    right: 10px !important;
}

.wp-pwd .button.wp-hide-pw .dashicons {
    font-size: 20px;
    color: #555 !important;
}

/* LOGIN BUTTON */
#wp-submit {
    background: #39a4c3 !important; /* blue button */
    border-radius: 10px !important;
    padding: 12px 20px !important;
    border: none !important;
    color: white !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    width: 100%;
    margin-top: 10px;
}

/* NAV LINKS */
#nav, #backtoblog {
    text-align: center;
}

#nav a, 
#backtoblog a {
    color: #333 !important;
    font-size: 13px !important;
}

/* REMOVE WORDPRESS FOOTER CREDITS */
.login #backtoblog, 
.login #nav {
    display: none !important;
}

/* RESPONSIVE */
@media (max-width: 480px) {
    #loginform {
        width: 90% !important;
        padding: 30px;
    }
}
