.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}
.auth-wrap::before {
  content: '';
  position: absolute; top: -260px; right: -200px;
  width: 720px; height: 720px;
  background: radial-gradient(circle, var(--accent-soft), transparent 68%);
  pointer-events: none;
}
.auth-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px -28px rgba(20,20,15,0.18);
  padding: 40px 36px;
}
.auth-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; color: var(--ink-dim); margin-bottom: 26px;
}
.auth-back:hover { color: var(--ink); }
.auth-back .material-symbols-rounded { font-size: 16px; }

.auth-head { text-align: center; margin-bottom: 28px; }
.auth-head .wordmark-text { display: block; margin-bottom: 12px; }
.auth-head h1 { font-size: 21px; margin: 0; }
.auth-head p { color: var(--ink-soft); font-size: 14px; margin: 8px 0 0; }

.auth-error {
  background: #fbeae7; border: 1px solid #e3b3a8; color: #a13f2c;
  font-size: 13px; padding: 10px 14px; border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.btn-google {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--line);
  background: #fff;
  font-family: var(--ff-heading); font-weight: 500; font-size: 14.5px;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .15s ease, transform .15s ease;
}
.btn-google:hover { border-color: var(--ink-dim); transform: translateY(-1px); }
.btn-google svg { width: 18px; height: 18px; }

.divider-row { display: flex; align-items: center; gap: 14px; margin: 24px 0; }
.divider-row .line { flex: 1; height: 1px; background: var(--line); }
.divider-row span { font-size: 11.5px; color: var(--ink-dim); text-transform: uppercase; letter-spacing: .06em; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 7px; }
.field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--bg-raised);
  font-family: var(--ff-body); font-size: 14.5px; color: var(--ink);
}
.field input:focus { outline: none; border-color: var(--accent); background: #fff; }

.auth-submit { width: 100%; margin-top: 6px; justify-content: center; }
.auth-switch { text-align: center; margin-top: 22px; font-size: 13.5px; color: var(--ink-soft); }
.auth-switch a { color: var(--accent-ink); font-weight: 600; }

/* ===== Dashboard placeholder ===== */
.dash-wrap {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 60px 24px;
}
.dash-card {
  text-align: center;
  max-width: 460px;
  padding: 48px 40px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.dash-icon {
  width: 56px; height: 56px; margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
}
.dash-icon .material-symbols-rounded { font-size: 28px; }
.dash-card h1 { font-size: 22px; margin: 0 0 10px; }
.dash-card p { color: var(--ink-soft); font-size: 15px; margin: 0 0 28px; }
.dash-actions { display: flex; flex-direction: column; gap: 10px; }
