.auth-page { min-height: 100vh; background: var(--bg-deep); }
.auth-page .nav-auth {
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.auth-page .nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}
.auth-page .logo-img { height: 32px; width: auto; }

.auth-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  min-height: calc(100vh - 80px);
  padding: 60px 32px;
}

.auth-hero { flex: 1; max-width: 480px; }
.auth-tagline {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  border-radius: 20px;
  margin-bottom: 24px;
}

.auth-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.auth-desc { font-size: 16px; color: var(--text-secondary); }

.auth-panel {
  width: 100%;
  max-width: 400px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.auth-panel h2 { font-size: 22px; margin-bottom: 28px; }
.auth-panel .form-group { margin-bottom: 18px; }
.auth-panel .form-group label { display: block; margin-bottom: 8px; color: var(--text-secondary); font-size: 13px; }
.auth-panel input {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
}
.auth-panel input:focus {
  outline: none;
  border-color: var(--gold);
}

.auth-panel .btn-primary { margin-top: 8px; padding: 14px; }
.auth-switch { margin-top: 24px; text-align: center; color: var(--text-secondary); font-size: 14px; }
.auth-switch a { color: var(--gold); }

@media (max-width: 900px) {
  .auth-layout { flex-direction: column; }
}
