.auth-wrap {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.auth-card {
  width: 100%;
  max-width: 400px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.auth-card h1 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.4px;
  margin-bottom: 6px;
}
.auth-card .subtitle {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
  line-height: 1.5;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.field input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color .15s;
}
.field input:focus { border-color: var(--brand); }
.btn-full { width: 100%; justify-content: center; }
.divider {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin: 20px 0 0;
}

/* Sent state */
.sent-box {
  text-align: center;
}
.sent-icon {
  width: 56px; height: 56px;
  background: var(--brand-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}
.sent-box h2 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.sent-box p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.sent-box .resend { font-size: 13px; color: var(--muted); margin-top: 24px; }
.sent-box .resend a { color: var(--brand); text-decoration: none; font-weight: 500; }
