/* ============================================================
   ForgeShift — Auth Pages (login, signup, password reset)
============================================================ */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 24px 16px;
}

.auth-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
}

.auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.auth-logo svg { width: 36px; height: 36px; }

.auth-logo-text {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--text);
}

.auth-title {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 6px;
}

.auth-subtitle {
  font-size: 13px;
  color: var(--text-3);
  text-align: center;
  margin-bottom: 28px;
}

.auth-divider {
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
  margin: 20px 0;
  position: relative;
}

.auth-divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--border);
}

.auth-divider span {
  position: relative;
  background: var(--surface);
  padding: 0 12px;
}

.auth-link {
  text-align: center;
  font-size: 13px;
  color: var(--text-3);
  margin-top: 20px;
}

.auth-link a {
  color: var(--brand);
  font-weight: 600;
}

.auth-error {
  background: var(--red-light);
  color: var(--red);
  border: 1px solid rgba(220,38,38,.2);
  border-radius: var(--r-md);
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 16px;
  display: none;
}

.auth-error.show { display: block; }

.auth-success {
  background: var(--green-light);
  color: var(--green);
  border: 1px solid rgba(5,150,105,.2);
  border-radius: var(--r-md);
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 16px;
  display: none;
}
.auth-success.show { display: block; }

.auth-btn {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  justify-content: center;
}
