body {
  min-height: 100vh;
}

.small-select {
  font-size: 12px;
}

.auth-container {
  background: url('../img/inscription-bg.png') center center / cover no-repeat fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /*padding: 2rem 0;*/
}
.auth-box {
  background-color: #e6f4ec;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  width: 90%;
  max-width: 1200px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}



.auth-left {
  background: url('../img/gpati-bg.png') center center / cover no-repeat;
  flex: 0.4; /* Réduit à 40% */
  padding: 2rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.auth-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 83, 44, 0.8);
  z-index: 1;
}
.auth-left>* {
  position: relative;
  z-index: 2;
}
.auth-right {
  flex: 0.6; /* Augmenté à 60% */
  padding: 2rem;
}

.auth-logo img {
  width: 230px;
}

.btn-login {
  font-weight: bold;
  padding: 0.6rem 1.5rem;
}

/* Responsive */
@media (max-width: 992px) {
  .auth-box {
    flex-direction: column;
    max-width: 600px;
  }
  .auth-left {
    order: 1; /* Déplace en bas */
    flex: none;
    padding: 2rem;
    text-align: center;
  }
  .auth-right {
    order: 2; /* Déplace en haut */
    flex: none;
  }
  .auth-logo {
    margin-top: 2rem;
  }
}

.auth-box-login {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 1rem;
  padding: 2.5rem;
  width: 95%;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.auth-logo-login {
  width: 180px;
}

.btn-login {
  font-weight: bold;
  padding: 0.75rem 1.5rem;
}

/* Responsive */
@media (max-width: 576px) {
  .auth-box-login {
    padding: 2rem 1.2rem;
  }

  .auth-logo-login {
    width: 140px;
  }
}
