body.login {
    background-color: #f3ebeb; /* Changez la couleur de fond */
    display: flex;
}
.notice  {
    display: none!important;
}
body.login div#login h1 a {
    background-image: url('../resources/images/spired-logo.png'); /* Remplacez par l'URL de votre logo */
    background-size: contain;
    width: 100%;
    height: 100px;
}
body.login #loginform {
    background: #fff; /* Changez le fond du formulaire */
    border-radius: 10px; /* Ajoutez des coins arrondis */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Ajoutez une ombre */
}
body.login #loginform p.submit {
    text-align: center;
}
body.login #loginform .button-primary {
    background: #0073aa;
    border-color: #0073aa;
    box-shadow: none;
    text-shadow: none;
    border-radius: 5px;
    height: 50px;
    font-size: 16px;
}

.language-switcher {
    display: none;
}

#leftPart{
    width: 50%;
    background: url(/wp-content/uploads/2025/04/loginbg-scaled.webp) 50% 50%;
    background-size: cover;
    box-shadow: 11px 2px 28px 0px rgba(0,0,0,0.56);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#rightPart{
    width: 50%;
    align-self: center;
    display: flex;
}

/* Overlay noir semi-transparent */
#leftPart .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    pointer-events: none;
    width: 50%;
    z-index:1;
}

#infos, #links{
    width: 80%;
    height: 30%;
    display: flex;
    align-self: center;
    color: white;
    z-index: 2;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
}

.card{
    width: 200px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 7px;
    z-index: 2;
}

.card:hover{
    box-shadow: 0px 0px 15px 5px #FFFFFF;
}

.cardTitle{
    width: 100%;
    height: 10%;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
    padding-left: 14px;
    color: darkslategrey;
    padding-top: 10px;
}

.cardImage{
    width: 100%;
    height: 50%;
    background: url(/wp-content/uploads/2025/04/loginbg-scaled.webp) no-repeat;
    background-size: cover;
    display: flex;
}

.cardInfos{
    color: grey;
    width: 96%;
    height: 40%;
    padding: 6px;
}
@media (max-width: 700px) {
    #leftPart {
        display: none; /* Masque la partie gauche */
    }

    #rightPart {
        width: 100%; /* Prend toute la largeur de l'écran */
        justify-content: center;
    }
}

a{
  text-decoration: none;
}