/* ── BODY ── */
body { min-height: 100vh; display: flex; }

/* ── LEFT PANEL ── */
.left {
  flex: 1; display: none; position: relative; overflow: hidden;
  background: var(--b1); border-right: 1px solid var(--border);
}
@media (min-width: 860px) { .left { display: flex; flex-direction: column; } }

.left-orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.lo1 { width: 480px; height: 480px; background: var(--rose); opacity: .1; top: -120px; left: -80px; }
.lo2 { width: 380px; height: 380px; background: var(--green); opacity: .09; bottom: -80px; right: -60px; }

.left-inner { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: space-between; padding: 44px; }
.left-logo {
  font-family: var(--fd); font-size: 1.2rem; font-weight: 600;
  letter-spacing: -.022em; text-decoration: none; color: #fff;
  display: flex; align-items: center; gap: 8px;
}
.ll-mark {
  width: 28px; height: 28px; border-radius: 6px;
  background: linear-gradient(135deg, var(--rose), var(--green));
  display: flex; align-items: center; justify-content: center; font-size: .78rem;
}
.left-logo em { font-style: normal; color: var(--rose); }
.left-body h2 {
  font-family: var(--fd); font-size: 1.75rem; font-weight: 700;
  letter-spacing: -.03em; line-height: 1.15; margin-bottom: 12px;
}
.left-body p { font-size: .9rem; color: var(--muted); line-height: 1.65; font-weight: 300; margin-bottom: 28px; }
.left-perks { display: flex; flex-direction: column; gap: 10px; }
.perk {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  border-radius: 10px; background: rgba(255,255,255,.03); border: 1px solid var(--border);
}
.pk-ico { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .88rem; flex-shrink: 0; }
.pk-ico.r { background: var(--rose-dim); } .pk-ico.g { background: var(--green-dim); }
.pk-name { font-family: var(--fd); font-size: .82rem; font-weight: 600; display: block; }
.pk-desc { font-size: .72rem; color: var(--muted); }
.left-foot { font-size: .75rem; color: var(--subtle); }

/* ── RIGHT PANEL ── */
.right {
  width: 100%; max-width: 440px;
  display: flex; flex-direction: column; justify-content: center;
  padding: 48px 44px; background: var(--bg);
}
@media (max-width: 859px) { .right { max-width: 100%; padding: 36px 24px; } }

.mob-logo {
  display: none; font-family: var(--fd); font-size: 1.15rem; font-weight: 600;
  letter-spacing: -.022em; text-decoration: none; color: #fff;
  align-items: center; gap: 8px; margin-bottom: 36px;
}
.mob-logo em { font-style: normal; color: var(--rose); }
@media (max-width: 859px) { .mob-logo { display: flex; } }

.form-head { margin-bottom: 28px; }
.form-head h1 { font-family: var(--fd); font-size: 1.5rem; font-weight: 700; letter-spacing: -.025em; margin-bottom: 6px; }
.form-head p  { font-size: .875rem; color: var(--muted); font-weight: 300; }

.msg { display: none; padding: 10px 13px; border-radius: 9px; font-size: .82rem; margin-bottom: 16px; }
.msg.err { background: var(--rose-dim); border: 1px solid rgba(231,66,102,.22); color: #f07090; }
.msg.suc { background: var(--green-dim); border: 1px solid rgba(32,182,158,.22); color: #42cdb8; }
.msg.show { display: block; }

.fg { margin-bottom: 15px; }
.fl { display: block; font-family: var(--fd); font-size: .75rem; font-weight: 600; margin-bottom: 6px; letter-spacing: .02em; }
.fi {
  width: 100%; padding: 11px 13px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: 10px; color: var(--text);
  font-family: var(--fb); font-size: .875rem;
  outline: none; transition: border-color .18s, box-shadow .18s;
}
.fi:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(231,66,102,.1); }
.fi::placeholder { color: var(--subtle); }

.form-opts { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; flex-wrap: wrap; gap: 8px; }
.ck-label { display: flex; align-items: center; gap: 7px; font-size: .82rem; color: var(--muted); cursor: pointer; }
.ck-label input { accent-color: var(--rose); }
.forgot { font-size: .82rem; color: var(--rose); text-decoration: none; font-family: var(--fd); font-weight: 500; transition: opacity .18s; }
.forgot:hover { opacity: .7; }

.btn-submit {
  width: 100%; padding: 12px;
  background: var(--rose); border: none; border-radius: 10px;
  color: #fff; font-family: var(--fd); font-size: .9rem; font-weight: 600;
  cursor: pointer; transition: all .18s;
  box-shadow: 0 4px 16px rgba(231,66,102,.3); margin-bottom: 20px;
}
.btn-submit:hover { background: #d03a5a; transform: translateY(-1px); box-shadow: 0 6px 22px rgba(231,66,102,.42); }
.btn-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.divider { display: flex; align-items: center; gap: 10px; color: var(--subtle); font-size: .75rem; margin-bottom: 18px; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.signup { text-align: center; font-size: .82rem; color: var(--muted); }
.signup a { color: var(--rose); text-decoration: none; font-family: var(--fd); font-weight: 500; }
.signup a:hover { text-decoration: underline; }
