/* ─── Layout ──────────────────────────────────────── */
.layout { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 57px); }
@media (max-width: 620px) { .layout { grid-template-columns: 1fr; } .side-panel { display: none; } }

/* ─── Side panel ──────────────────────────────────── */
.side-panel {
  background: linear-gradient(160deg, #085041 0%, #0a6b54 60%, #1D9E75 100%);
  padding: 3rem 2.5rem;
  display: flex; flex-direction: column;
  justify-content: center; gap: 2.5rem;
}
.side-brand { font-family: 'Syne', sans-serif; font-size: 1.7rem; font-weight: 800; color: #fff; line-height: 1.2; letter-spacing: -.5px; }
.side-brand span { color: #5DCAA5; }
.side-desc { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; margin-top: .5rem; }

.swap-cards { display: flex; flex-direction: column; gap: 10px; }
.swap-card-mini { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: .85rem 1rem; display: flex; align-items: center; gap: 10px; }
.scard-icon { width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.scard-text { font-size: 13px; color: #fff; font-weight: 500; }
.scard-sub { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 1px; }

.stat-row { display: flex; gap: 1.5rem; }
.mini-stat .num { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; color: #5DCAA5; }
.mini-stat .lbl { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 1px; }

/* ─── Form side ───────────────────────────────────── */
.form-side { display: flex; align-items: center; justify-content: center; padding: 2.5rem 2rem; background: var(--surface); }
.form-inner { width: 100%; max-width: 380px; }
.form-title { font-size: 1.35rem; font-weight: 800; margin-bottom: 3px; }
.form-sub { font-size: 13px; color: var(--text-soft); margin-bottom: 1.5rem; }

/* ─── Social btn ──────────────────────────────────── */
.btn-social { width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; padding: .65rem; border-radius: var(--radius-md); border: 1px solid var(--border); background: var(--surface); font-size: 13px; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; color: var(--text); margin-bottom: .75rem; transition: background .15s; }
.btn-social:hover { background: var(--bg); }

/* ─── Divider ─────────────────────────────────────── */
.divider-or { display: flex; align-items: center; gap: 10px; margin: 1.1rem 0; font-size: 12px; color: var(--text-muted); }
.divider-or::before, .divider-or::after { content: ''; flex: 1; height: 1px; background: var(--border-soft); }

/* ─── Error / forgot ──────────────────────────────── */
.err-msg { font-size: 12px; color: #A32D2D; margin-top: 4px; display: none; }
.err-msg.show { display: block; }
.forgot-link { text-align: right; margin-top: 5px; }
.forgot-link a { font-size: 12px; color: var(--green); cursor: pointer; }
.forgot-link a:hover { text-decoration: underline; }

/* ─── Back link ───────────────────────────────────── */
.back-link { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: var(--green); cursor: pointer; background: none; border: none; font-family: 'DM Sans', sans-serif; padding: 0; margin-bottom: 1.25rem; }
.back-link:hover { text-decoration: underline; }

/* ─── Success ─────────────────────────────────────── */
.success-box { text-align: center; padding: 1.5rem 0; }
.success-icon { width: 58px; height: 58px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto .9rem; }
.success-box h2 { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 800; margin-bottom: .4rem; }
.success-box p { font-size: 13px; color: var(--text-soft); margin-bottom: 1.25rem; line-height: 1.6; }
