/* ─── 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: var(--green-dark); padding: 3rem 2.25rem; display: flex; flex-direction: column; justify-content: space-between; }
.side-tagline { font-family: 'Syne', sans-serif; font-size: 1.7rem; font-weight: 800; color: #fff; line-height: 1.2; letter-spacing: -.5px; margin-bottom: .9rem; }
.side-tagline span { color: #5DCAA5; }
.side-sub { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: 2.5rem; }
.perks { display: flex; flex-direction: column; gap: 14px; }
.perk { display: flex; align-items: flex-start; gap: 12px; }
.perk-icon { font-size: 18px; flex-shrink: 0; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.1); border-radius: var(--radius-md); }
.perk-title { font-size: 13px; font-weight: 500; color: #fff; margin-bottom: 2px; }
.perk-desc { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.4; }
.testimonial { background: rgba(255,255,255,.08); border-radius: var(--radius-lg); padding: 1rem 1.25rem; margin-top: 2rem; }
.t-quote { font-size: 13px; color: rgba(255,255,255,.8); line-height: 1.6; margin-bottom: 8px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,.55); }

/* ─── Form side ───────────────────────────────────── */
.form-side { display: flex; align-items: flex-start; justify-content: center; padding: 2.5rem 2rem; }
.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); }

/* ─── Field row (2-col) ───────────────────────────── */
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* ─── Password strength ───────────────────────────── */
.pw-strength { margin-top: 6px; }
.pw-bar { display: flex; gap: 4px; margin-bottom: 3px; }
.pw-seg { height: 3px; flex: 1; border-radius: 2px; background: var(--border-soft); transition: background .3s; }
