/* ==========================================================================
   Auth Social — bouton Google + séparateur "ou"
   À charger APRÈS ton style.css principal (pour bien surcharger Bootstrap)
   Lien dans base.html :
   <link rel="stylesheet" href="{% static 'css/auth-social.css' %}">
   ========================================================================== */

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #9a9a9a;
  font-size: 13px;
  margin: 20px 0;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e5e0d8;
}

.auth-divider span {
  padding: 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 12px;
}

.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #ffffff;
  border: 1px solid #dcd6c9;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: #3c3c3c;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-google:hover,
.btn-google:focus {
  background: #faf8f3;
  border-color: #cfc7b4;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  color: #3c3c3c;
  text-decoration: none;
}

.btn-google:active {
  background: #f3efe4;
}

.btn-google img {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* Variante si tu veux un jour un bouton Facebook à côté, même gabarit */
.btn-facebook {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #1877f2;
  border: 1px solid #1877f2;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  margin-top: 10px;
}

.btn-facebook:hover,
.btn-facebook:focus {
  background: #166fe5;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-facebook i {
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
}

/* Si tu veux les deux boutons sociaux côte à côte au lieu d'empilés */
.auth-social-row {
  display: flex;
  gap: 10px;
}

.auth-social-row .btn-google,
.auth-social-row .btn-facebook {
  width: auto;
  flex: 1;
}

.auth-modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
}

.auth-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}

.auth-modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #faf5e8;
  color: #c9a227;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}

.auth-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 26px;
  color: #1a1a1a;
}

.auth-modal-sub {
  font-size: 14px;
  color: #8a8a8a;
}

.btn-auth-outline {
  display: block;
  text-align: center;
  padding: 12px 16px;
  border: 1px solid #dcd6c9;
  border-radius: 8px;
  font-weight: 600;
  color: #1a1a1a;
  background: #fff;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-auth-outline:hover {
  background: #faf8f3;
  border-color: #cfc7b4;
  color: #1a1a1a;
}