/* ── Personnalisation wp-login.php (connexion / mot de passe oublié / inscription) ── */

body.login #login h1 a {
    background-image: url('../images/logo_MBL.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 190px;
    height: 108px;
}

body.login.wp-core-ui .button,
body.login.wp-core-ui .button-secondary {
    background: #fff !important;
    border-color: #D2097A !important;
    color: #D2097A !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

body.login.wp-core-ui .button:hover,
body.login.wp-core-ui .button:focus,
body.login.wp-core-ui .button-secondary:hover,
body.login.wp-core-ui .button-secondary:focus {
    background: #fdf0f6 !important;
    border-color: #a5076a !important;
    color: #a5076a !important;
}

body.login.wp-core-ui .button-primary {
    background: #D2097A !important;
    border-color: #D2097A !important;
    color: #fff !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

body.login.wp-core-ui .button-primary:hover,
body.login.wp-core-ui .button-primary:focus {
    background: #a5076a !important;
    border-color: #a5076a !important;
    color: #fff !important;
}

body.login #nav a,
body.login #backtoblog a {
    color: #333;
}

body.login #nav a:hover,
body.login #backtoblog a:hover {
    color: #D2097A;
}

body.login form#loginform,
body.login form#lostpasswordform,
body.login form#registerform {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

body.login input[type="text"]:focus,
body.login input[type="password"]:focus,
body.login input[type="email"]:focus {
    border-color: #D2097A;
    box-shadow: 0 0 0 1px #D2097A;
}

/* Notices d'info (mot de passe envoyé, compte créé, etc.) */
body.login .message,
body.login .notice {
    border-left-color: #D2097A !important;
}

/* Visuel décoratif : agricultrice collée à droite du formulaire (desktop uniquement) */
@media (min-width: 1100px) {
    body.login #login {
        position: relative;
    }

    body.login #login::before {
        content: '';
        position: absolute;
        top: 0;
        left: 100%;
        bottom: 0;
        width: 150px;
        background: url('../images/images_sections/agricultrice.png') no-repeat center bottom;
        background-size: contain;
        pointer-events: none;
    }
}
