/* === login-register.css === */

/* Fond de page */
body.login {
    background-color: #0073aa !important;
}

/* Bloc du formulaire */
body.login #login {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: none; /* ⛔️ Suppression de l’ombre */
    width: 320px;
    margin: 5% auto;
}

/* Labels et textes */
body.login label,
body.login .message,
body.login .description,
body.login .forgetmenot label {
    color: #333 !important;
    font-weight: bold;
}

/* Champs input */
body.login input[type="text"],
body.login input[type="password"],
body.login input[type="email"] {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 4px;
    width: 100%;
}

/* Bouton */
body.login input[type="submit"] {
    background-color: #0073aa;
    color: white;
    border: none;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

body.login input[type="submit"]:hover {
    background-color: #005a87;
}

/* Supprimer le logo WordPress par défaut */
body.login h1 a {
    background-image: url('https://listandfuse.com/wp-content/uploads/2025/08/cropped-ListAndFUse-Logo.webp'); /* à remplacer */
    background-size: contain;
    width: 100%;
    height: 80px;
    background-repeat: no-repeat;
    margin: 0 auto 20px;
    display: block;
}
