/* Halaman auth — login, daftar, verifikasi */

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.auth-card-wide {
  max-width: 480px;
}

.auth-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
}

.auth-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  overflow: hidden;
  padding: 6px;
}

.auth-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.auth-body {
  padding: 1.75rem 1.5rem 1.5rem;
}

.auth-status-icon {
  font-size: 3rem;
  line-height: 1;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem 0;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Google Sign-In */
.google-auth-block {
  margin-bottom: 0.5rem;
}

.google-signin-wrap {
  display: flex;
  justify-content: center;
  min-height: 44px;
}

.btn-google-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  font-weight: 600;
  border: 1px solid #dadce0;
  background: #fff;
  color: #3c4043;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}

.btn-google-alt:hover {
  background: #f8f9fa;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.15);
  color: #3c4043;
}

.google-icon {
  flex-shrink: 0;
}

.google-auth-hint {
  line-height: 1.4;
}
