/* ── UKTG Login Page Styling ──────────────────────────────────────────────── */
/* Replaces LoginPress plugin. Enqueued via login_enqueue_scripts in functions.php */

/* Full-page background */
body.login {
    background-color: #bfaa7c;
    background-image: url('https://uktherapyguild.co.uk/wp-content/uploads/2025/08/TherapyLogin.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

/* UKTG logo replacing the WP logo */
#login h1 a,
.login h1 a {
    background-image: url('https://uktherapyguild.co.uk/wp-content/uploads/2025/06/UKTG-LOGO-2-1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 333px;
    height: 175px;
    display: block;
}

/* Form container width */
#login {
    width: 454px;
    max-width: 95vw;
    padding-top: 20px;
}

/* Form card — semi-transparent (69%) white, rounded, shadowed */
.login form {
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.69);
}

/* Gold submit button */
.wp-core-ui .button-primary {
    background: #bfaa7c !important;
    border-color: #bfaa7c !important;
    box-shadow: none !important;
    text-shadow: none !important;
    color: #fff !important;
}
.wp-core-ui .button-primary:hover,
.wp-core-ui .button-primary:focus {
    background: #a8956a !important;
    border-color: #a8956a !important;
}

/* Footer links — white text, 16px */
#login #nav a,
#login #backtoblog a {
    color: #ffffff;
    font-size: 16px;
}

/* Hide "Lost your password?" — site uses Magic Link passwordless login */
a[href*="action=lostpassword"] {
    display: none !important;
}
