/* Auth page styles */
.auth-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 24px;
}

.auth-container {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.auth-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  z-index: 1;
}

.auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 32px;
  font-size: 16px;
  font-weight: 600;
}
.logo-mark { color: var(--accent); }
.logo-sep { color: var(--border); }
.logo-product { color: var(--fg); }

.auth-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: 8px;
}

.auth-sub {
  font-size: 14px;
  color: var(--fg-muted);
  text-align: center;
  margin-bottom: 32px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
}

.form-group input {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--fg);
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input::placeholder { color: var(--fg-muted); opacity: 0.5; }
.form-group input:focus { border-color: var(--accent); }

.auth-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #ef4444;
}

.btn-auth {
  width: 100%;
  background: var(--accent);
  color: var(--bg);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  padding: 13px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
  margin-top: 4px;
}

.btn-auth:hover { background: var(--accent-hover); }

.spin {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.auth-footer {
  margin-top: 24px;
  text-align: center;
}

.auth-footer p {
  font-size: 13px;
  color: var(--fg-muted);
}

.auth-footer a {
  color: var(--accent);
  text-decoration: none;
}

.auth-footer a:hover { text-decoration: underline; }

.auth-bg {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  pointer-events: none;
}

.auth-bg-glow {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(201,169,98,0.08) 0%, transparent 70%);
  border-radius: 50%;
}