/* صفحات تسجيل الدخول والتسجيل */
.auth-wrap { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 48px 16px; }
.auth-card {
  max-width: 420px; width: 100%; padding: 32px; background: var(--clr-white, #fff);
  border-radius: var(--radius-lg, 24px); box-shadow: var(--shadow-lg, 0 8px 40px rgba(0,0,0,0.08));
  border: 1px solid var(--clr-border, #D1FAE5);
}
.auth-card h1 { margin-bottom: 8px; font-size: 1.5rem; }
.auth-lead { color: var(--clr-text-light, #6B7280); margin-bottom: 24px; font-size: 0.95rem; }

.btn-google {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 12px 16px; border-radius: 10px; border: 1px solid #dadce0;
  background: #fff; font-weight: 600; color: #3c4043; margin-bottom: 16px;
}
.btn-google:hover { background: #f8f9fa; border-color: #c6c9ce; }
.g-icon {
  width: 22px; height: 22px; border-radius: 4px;
  background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
  color: #fff; font-size: 12px; font-weight: 900; display: flex; align-items: center; justify-content: center;
}

.auth-divider { text-align: center; margin: 20px 0; position: relative; color: var(--clr-text-muted); font-size: 0.85rem; }
.auth-divider::before, .auth-divider::after {
  content: ''; position: absolute; top: 50%; width: 42%; height: 1px; background: var(--clr-border-dark);
}
.auth-divider::before { right: 0; }
.auth-divider::after { left: 0; }
.auth-divider span { background: var(--clr-white); padding: 0 10px; position: relative; }

.auth-form label { display: block; margin-bottom: 14px; font-weight: 500; }
.auth-form .input {
  width: 100%; margin-top: 6px; padding: 12px 14px; border: 1px solid #d1d5db; border-radius: 10px; font-size: 1rem;
}
.btn-block { width: 100%; margin-top: 8px; }
.auth-footer { margin-top: 20px; text-align: center; font-size: 0.95rem; color: var(--clr-text-light); }
.auth-footer a { color: var(--clr-primary); font-weight: 600; }
.hint { font-size: 0.85rem; color: var(--clr-text-muted); margin-bottom: 16px; }
.hint code { font-size: 0.8rem; background: #f3f4f6; padding: 2px 6px; border-radius: 4px; }
