/* Import de la base responsive */
@import "responsive_base";

/* Utilisation des classes responsive prêtes à l'emploi */
.auth-container {
  @extend .auth-container-responsive;
}

.auth-card {
  @extend .auth-card-responsive;
}

.auth-header {
  @extend .auth-header-responsive;
}

.auth-input {
  @extend .auth-input-responsive;
}

.auth-button {
  @extend .auth-button-responsive;
}

.auth-checkbox-container {
  @extend .auth-checkbox-responsive;
}

.auth-back-button {
  @extend .auth-back-button-responsive;
}

.alert {
  @extend .alert-responsive;
}

/* Styles spécifiques à la page de connexion seulement */
.auth-form {
  position: relative;
  z-index: 1;
}

.auth-link {
  display: block;
  text-align: center;
  color: #4a5568;
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  transition: color 0.3s ease;

  &:hover {
    color: $auth-orange;
    text-decoration: underline;
  }

  @include mobile {
    font-size: 0.8rem;
  }
}

.auth-bottom {
  text-align: center;
  border-top: none;
  padding-top: 1rem;
  position: relative;
  z-index: 1;

  p {
    margin: 0;
    font-size: 0.8rem;
    color: #6b7280;

    @include mobile {
      font-size: 0.75rem;
    }
  }
}

.auth-secondary-link {
  color: $auth-orange;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;

  &:hover {
    color: $auth-orange-dark;
    text-decoration: underline;
  }
}
