.auth-page {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  min-height: 620px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
@media (max-width: 860px) {
  .auth-page { grid-template-columns: 1fr; min-height: auto; border-radius: var(--radius); }
  .auth-visual { min-height: 220px; }
}

.auth-visual {
  position: relative;
  background: radial-gradient(circle at 20% 15%, rgba(255,90,31,.35), transparent 55%),
              radial-gradient(circle at 85% 85%, rgba(255,90,31,.18), transparent 55%),
              #17171a;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 56px;
  overflow: hidden;
}

.plate {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 22px 28px;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.plate .plate-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}
.plate .plate-name {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.visual-text { max-width: 340px; }
.visual-text p { color: rgba(255,255,255,.65); line-height: 1.8; font-size: 14px; margin: 0; }

.auth-form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  background: var(--panel);
}
.auth-form { width: 100%; max-width: 340px; display: flex; flex-direction: column; }
.auth-form h1 { margin: 0 0 6px; font-size: 25px; font-weight: 800; letter-spacing: -0.02em; }
.auth-form .sub { color: var(--text-dim); margin: 0 0 28px; font-size: 14px; }
.auth-form label { font-size: 13px; color: var(--text); margin-bottom: 7px; margin-top: 16px; font-weight: 700; }
.auth-form label:first-of-type { margin-top: 0; }
.auth-form input {
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--panel);
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.auth-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.auth-form .code-input {
  text-align: center;
  letter-spacing: 8px;
  font-size: 22px;
  font-weight: 800;
}
.auth-form .btn-primary { margin-top: 26px; border-radius: 999px; }
.field-hint { font-size: 12px; color: var(--text-dim); margin: 8px 0 0; line-height: 1.5; }
.switch-link { text-align: center; margin-top: 20px; font-size: 13px; color: var(--text-dim); }
.switch-link a { color: var(--accent); font-weight: 700; }
.resend-form { max-width: 340px; margin: 12px auto 0; }
