.auth-container {
    height: 100vh;
}
.login-container {
    position: relative;
    color: #fff;
    background-image: url("/src/public/image/connexion.jpg");
    background-position: top;
    background-size: cover;
}
.login-container::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.10);
}
.register-container {
    position: relative;
    color: #fff;
    background-image: url("/src/public/image/inscription.jpg");
    background-position: top;
    background-size: cover;
}
.register-container::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.10);
}
.auth-overlay {
    margin: 2rem;
    position: absolute;
    bottom: 20px;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.25);
    text-align: center;
}
.auth-form {
    padding: 8rem 4rem !important;
    color: #000;
    background-color: #fff;
}
.auth-title {
    font-size: 54px;
    text-align: center;
}
.auth-subtitle {
    font-size: 24px;
}
.auth-description {
    font-size: 18px;
    text-align: center;
}
.auth-form-title {
    font-size: 36px;
    color: #22812B;
    font-weight: bold;
}


 /* `sm` applies to x-small devices (portrait phones, less than 992px) */
 @media (max-width: 991.98px) { 
    .auth-container {
        height: 40vh;
      }
    .auth-green {
        padding: 4rem 2rem !important;
    }
    .auth-white {
        padding: 4rem 2rem !important;
    }
    .auth-title {
        font-size: 36px;
    }
    .auth-subtitle {
        font-size: 22px;
    }
    .auth-form-title {
        font-size: 24px;
    }
    .auth-description {
        font-size: 14px;
    }

  }
 
 /* `md` applies to small devices (landscape phones, less than 768px) */
 @media (max-width: 767.98px) { 
    .auth-container {
        height: auto;
      }
 }
 