/* Auth Modal Styling */
.auth-modal .modal-content {
  background: #0c1427;
  border: 1px solid #172340;
  border-radius: 16px;
}

.auth-modal .modal-header {
  border-bottom: 1px solid #172340;
  padding: 1.5rem;
}

.auth-modal .modal-body {
  padding: 2rem;
  text-align: center;
}

.auth-modal .modal-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  stroke: #6571ff;
}

.auth-modal .modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.auth-modal .modal-text {
  color: #7987a1;
  margin-bottom: 1.5rem;
}

/* Google Button */
.auth-modal .modal-body .btn.btn-auth-google {
  background-color: #ffffff;
  border: 1px solid #dadce0;
  color: #3c4043;
  padding: 12px 32px;
  font-weight: 500;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 0.75rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.auth-modal .modal-body .btn.btn-auth-google:hover {
  background-color: #f8f9fa;
  border-color: #dadce0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #3c4043;
}

.auth-modal .btn-auth-google img {
  height: 20px;
  width: 20px;
}

/* Divider */
.auth-modal .auth-divider {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  color: #7987a1;
  font-size: 0.85rem;
}

.auth-modal .auth-divider::before,
.auth-modal .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #172340;
}

.auth-modal .auth-divider span {
  padding: 0 1rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

/* Primary Button */
.auth-modal .modal-body .btn.btn-auth-primary {
  background: linear-gradient(135deg, #6571ff 0%, #515acc 100%);
  border: none;
  color: white;
  padding: 12px 32px;
  font-weight: 600;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 0.75rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.auth-modal .modal-body .btn.btn-auth-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(101, 113, 255, 0.3);
  color: white;
}

.auth-modal .btn-auth-primary svg {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

/* Secondary Button */
.auth-modal .modal-body .btn.btn-auth-secondary {
  background: transparent;
  border: 1px solid #172340;
  color: #d0d6e1;
  padding: 12px 32px;
  border-radius: 8px;
  width: 100%;
  transition: all 0.2s ease;
}

.auth-modal .modal-body .btn.btn-auth-secondary:hover {
  background: rgba(23, 35, 64, 0.5);
  border-color: #243866;
  color: #fff;
}