/**
 * Styles personnalisés pour la page de connexion de PharmaConnect (wp-login.php).
 */

body.login {
    background-color: #97daa98e !important; /* Vert clair pour le fond */
}

/* Remplacer le logo de WordPress */
#login h1 a, .login h1 a {
    background-image: url('../images/icons/icon-192x192.png'); /* Utilise le logo PWA */
    height: 100px;
    width: 100px;
    background-size: 100px 100px;
    background-repeat: no-repeat;
    padding-bottom: 20px;
}

/* Style du formulaire */
#loginform {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

#loginform:hover {
    box-shadow: 0 10px 25px rgba(5, 228, 98, 0.966);
}

/* Style du bouton */
.login .button-primary {
    background: #2ecc71 !important;
    border-color: #27ae60 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    transition: background-color 0.2s;
}
.login .button-primary:hover {
    background: #27ae60 !important;
}