body.login {
    background-color: #FBFBFB;
    background-image: url('https://www.jordanandsally.co.uk/wp-content/uploads/2025/06/SKY-3-scaled.png');
    background-repeat: repeat;
    background-size: cover;
    background-position: -50px 20%;
    font-family: "Outfit", sans-serif;
    color: #202020;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#login {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

#password-protected-logo a {
    display: block;
    background-image: url('https://www.jordanandsally.co.uk/wp-content/uploads/2026/01/JS_ARTWORK-scaled-e1768059998408.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 500px;
    height: 200px;
    margin-bottom: 0;
}

.password-protected-text-above {
    font-size: 16px !important;
    margin: 0 0 5px 0; 
}

#loginform {
    background: #FFFFFF;
    padding: 18px 25px 20px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    width: 100%;
    max-width: 360px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.user-pass-wrap label {
    display: none;
}

#password_protected_pass {
    width: 100%;
    padding: 16px;
    margin-bottom: 10px;
    font-size: 16px;
    font-family: "Outfit", sans-serif;
    border: 1px solid #246430;
    border-radius: 5px;
    box-sizing: border-box;
}

#password_protected_pass:focus {
    border-color: #FED42B;
    box-shadow: 0 0 0 2px rgba(254,212,43,0.2);
}

#wp-submit {
    background-color: #FED42B;
    border-color: #FED42B;
    color: #000000;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    padding: 12px 0;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#wp-submit:hover,
#wp-submit:focus {
    background-color: #E66B00;
    border-color: #E66B00;
}

@media only screen and (max-width: 768px) {
    #password-protected-logo a {
        width: 440px;
        height: 180px;
        margin-bottom: 5px;
    }

    .password-protected-text-above {
        font-size: 14px !important;
        margin: 0 0 6px 0;
    }

    #loginform {
        padding: 15px 18px 18px 18px;
        max-width: 320px;
        gap: 5px;
    }

    #password_protected_pass {
        margin-bottom: 8px;
    }

    #wp-submit {
        padding: 10px 0;
    }
}

@media only screen and (max-width: 480px) {
    #password-protected-logo a {
        width: 350px;
        height: 150px;
        margin-bottom: 3px;
    }

    .password-protected-text-above {
        font-size: 14px !important; 
        margin: 0 0 5px 0;
    }

    #loginform {
        padding: 12px 16px 15px 16px;
        max-width: 300px;
        gap: 4px;
    }

    #password_protected_pass {
        margin-bottom: 6px;
    }

    #wp-submit {
        padding: 8px 0;
    }
}
