.auth-wrap {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; padding: 24px;
  position: relative; z-index: 1;
}
.auth-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  width: 100%; max-width: 400px;
  display: flex; flex-direction: column; gap: 20px;
}
.auth-box h1 {
  font-family: 'Syne', sans-serif;
  font-size: 28px; font-weight: 800; text-align: center;
}
.auth-box .sub { font-size: 13px; color: var(--muted); text-align: center; }

.auth-field { display: flex; flex-direction: column; gap: 6px; }
.auth-field label { font-size: 12px; color: var(--text2); font-weight: 500; }

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

.auth-remember {
  display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text2);
}
.auth-remember input { width: auto; }

.auth-submit {
  width: 100%; padding: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: none; border-radius: 10px;
  color: #fff; font-weight: 600; font-size: 14px; cursor: pointer;
}
.auth-submit:hover { opacity: .9; color: #fff; border: none; }

.auth-link { text-align: center; font-size: 13px; color: var(--muted); }
.auth-link a { color: var(--accent); }
