body {
    background-color: #fff;
}

#auth {
    height: 100vh;
    overflow-x: hidden;
}

/* Colonne droite : image plein écran */
#auth #auth-right {
    height: 100%;
    background: url("../../images/banner.jpeg") center center / cover no-repeat;
}

/* Colonne gauche : formulaire */
#auth #auth-left {
    padding: 4rem 4rem;     /* Réduction du padding */
    width: 100%;
    max-width: 100%;
}

/* Titres */
#auth #auth-left .auth-title {
    font-size: 3rem;        /* Légèrement réduit pour cohérence */
    margin-bottom: 1rem;
}

#auth #auth-left .auth-subtitle {
    font-size: 1.5rem;
    line-height: 2.3rem;
    color: #a8aebb;
}

#auth #auth-left .auth-logo {
    margin-bottom: 4rem;    /* Réduction de l’espace inutile */
}

#auth #auth-left .auth-logo img {
    height: 2.5rem;
}

/* Responsive mobile */
@media screen and (max-width: 767px) {
    #auth #auth-left {
        padding: 2.5rem 1.5rem;
    }

    #auth #auth-left .auth-title {
        font-size: 2.2rem;
    }
}
