/* Full-page background */
body.login {
    background-color: #0b0c1c;
    background-image: url('https://community-challenge.co.uk/wp-content/uploads/2025/06/image0-4-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Remove WordPress logo and link behavior */
body.login h1 a {
    display: none !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

/* Custom logo above the login box */
#login::before {
    content: "";
    display: block;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px auto;
    background-image: url('https://community-challenge.co.uk/wp-content/uploads/2025/06/cropped-ChatGPT-Image-Jun-18-2025-02_37_36-PM.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Login form box styling */
body.login #loginform {
    border: 2px solid yellow;
    background-color: #1a1b2f;
    padding: 30px;
    box-shadow: 0 0 10px yellow;
    border-radius: 8px;
}

/* Input labels */
body.login label {
    color: white;
}

/* Primary login button */
body.login .button-primary {
    background-color: yellow;
    border-color: yellow;
    color: black;
    font-weight: bold;
}

/* Optional: Adjust link styles under the form */
body.login #nav a,
body.login #backtoblog a {
    color: #ccc;
}

/* ✅ Custom banner for registration success */
body.login .cc-banner {
    background-color: #1a1b2f;
    border-left: 5px solid yellow;
    color: #ffffff; /* ← fully white text */
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
}