.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 22%;
}

.auth-wrapper {
  display: flex;
  max-width: 1200px;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #DDE9E7;
  background: #F1F4F4;
}

.auth-left {
  flex: 1.2;
  padding: 50px 45px 34px 45px;
  background: #F5F5F5;
  position: relative;
}

.auth-left h2 {
    color: #004439;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 36px;
    text-align: center;
}

.auth-header-logo {
  position: absolute;
  top: 14px;
  left: 14px;
}

.auth-right {
  flex: 0.8;
  padding: 59px 46px 38px 46px;
  color: white;
  background: #004439;
}

.auth-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.auth-header img {
  height: 40px;
}

.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  padding: 14px 27px;
  margin-bottom: 6px;
  position: relative;
  border-radius: 20px;
  border: 1px solid #DDE9E7;
  background: #FFF;
  cursor: pointer;
}

.google-btn img {
  position: absolute;
  left: 27px;
}

.google-btn span {
  flex: 1;
  font-family: "Open Sans";
  font-style: normal;
  text-align: center;
  margin-left: 1rem;
  color: #3B605A;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
}

.divider {
  position: relative;
  text-align: center;
  margin: 6px 0;
  stroke-width: 1px;
  stroke: #D1E0DE;
  color: #9DADAB;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background: #ddd;
}

.divider::before { left: 0; }
.divider::after { right: 0; }

.field {
  margin-bottom: 10px;
}

.field label {
  display: block;
  margin-bottom: 5px;
  color: #3B605A;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}

.field input {
  width: calc(100% - 54px);
  padding: 14px 27px;
  height: 18px;
  border-radius: 20px;
  border: 1px solid #D1E0DE;
  background: #F1F4F4;
}

.field input:focus {
  outline: 1px solid #59B224;
}

.actions {
  margin-top: 20px;
}

.submit-btn {
  width: 100%;
  padding: 8px 131px;
  border: none;
  color: #004439;
  cursor: pointer;
  border-radius: 20px;
  background: #59B224;
  height: 46px;
  color: #FFF;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px; /* 212.5% */
}

.auth-footer {
  margin-top: 21px;
  text-align: center;
  color: #3B605A;
  font-size: 12px;
  font-weight: 500;
  line-height: 24px; /* 200% */
}

.auth-footer a {
  color: #6BBE46;
  font-weight: 600;
}

.auth-right-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.auth-right-title {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.80);
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
  line-height: 36px;
}

.feature-box {
  padding: 5px 16px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 20px;
  border: 1px solid #59B224;
  background: rgba(89, 178, 36, 0.10);
}

.feature-box span {
    color: #59B224;
    font-size: 12px;
    font-weight: 500;
    line-height: 27px; /* 225% */
}

.auth-right-footer {
  margin-top: auto;
}

.auth-right-footer p {
  color: rgba(255, 255, 255, 0.50);
  font-size: 12px;
  font-weight: 400;
  line-height: 26px; /* 216.667% */
  margin-bottom: 12px;
}

.auth-right-footer img {
  height: 40px;
}

/* Regroupement des media queries à la fin du fichier */
@media (max-width: 1024px) {
  .auth-container {
    padding: 37px 20px;
  }
}

@media (max-width: 768px) {
  .auth-wrapper {
    display: initial;
    border-radius: 20px;
  }

  .auth-right {
    display: none;
  }
  
  .auth-left {
    flex: 1;
    padding: 50px 23px 34px 23px;
  }
}
