:root{
  --primary:152 60% 38%;
  --primary-foreground:0 0% 100%;
  --primary-glow:152 70% 50%;
  --background:140 30% 98%;
  --foreground:160 20% 12%;
  --card:0 0% 100%;
  --muted:140 15% 95%;
  --muted-foreground:160 10% 45%;
  --accent:152 50% 92%;
  --accent-foreground:152 60% 25%;
  --border:140 20% 90%;
  --input:140 20% 90%;
  --destructive:0 75% 55%;
  --radius:16px;
  --shadow-card:0 4px 24px hsl(152 40% 30% / 0.08);
  --shadow-glow:0 8px 32px hsl(152 70% 50% / 0.35);
  --gradient-primary:linear-gradient(135deg,hsl(152 60% 38%),hsl(152 70% 50%));
}
*{box-sizing:border-box;margin:0;padding:0}
html,body{font-family:'Plus Jakarta Sans',system-ui,-apple-system,sans-serif;background:hsl(var(--background));color:hsl(var(--foreground));-webkit-font-smoothing:antialiased}
a{color:hsl(var(--primary));text-decoration:none;font-weight:600}
a:hover{text-decoration:underline}

.shell{min-height:100vh;display:grid;grid-template-columns:1fr;background:hsl(var(--background))}
@media(min-width:900px){.shell{grid-template-columns:1.1fr 1fr}}
.brand-panel{display:none;background:var(--gradient-primary);color:hsl(var(--primary-foreground));padding:48px;position:relative;overflow:hidden}
@media(min-width:900px){.brand-panel{display:flex;flex-direction:column;justify-content:space-between}}
.brand-panel::before{content:'';position:absolute;inset:-50%;background:radial-gradient(circle at 30% 20%,rgba(255,255,255,.2),transparent 50%),radial-gradient(circle at 80% 80%,rgba(255,255,255,.15),transparent 50%)}
.brand-panel>*{position:relative;z-index:1}
.brand-logo{display:flex;align-items:center;gap:12px;font-size:22px;font-weight:800;letter-spacing:-.02em}
.brand-logo .dot{width:36px;height:36px;border-radius:10px;background:rgba(255,255,255,.2);display:grid;place-items:center;backdrop-filter:blur(8px)}
.brand-hero h1{font-size:44px;line-height:1.1;font-weight:800;letter-spacing:-.025em;margin-bottom:16px}
.brand-hero p{font-size:17px;opacity:.9;line-height:1.6;max-width:440px}
.brand-features{display:flex;flex-direction:column;gap:14px}
.brand-features .feat{display:flex;align-items:center;gap:12px;font-size:15px;opacity:.95}
.brand-features .feat .ic{width:32px;height:32px;border-radius:8px;background:rgba(255,255,255,.18);display:grid;place-items:center}

.form-panel{display:flex;flex-direction:column;padding:24px;min-height:100vh}
@media(min-width:900px){.form-panel{padding:48px 64px;justify-content:center}}
.form-wrap{width:100%;max-width:460px;margin:0 auto}
.mobile-brand{display:flex;align-items:center;gap:10px;font-weight:800;color:hsl(var(--primary));font-size:20px;margin-bottom:32px}
@media(min-width:900px){.mobile-brand{display:none}}
.mobile-brand .dot{width:32px;height:32px;border-radius:9px;background:var(--gradient-primary);display:grid;place-items:center;color:#fff}

h2.title{font-size:30px;font-weight:800;letter-spacing:-.02em;margin-bottom:8px}
p.subtitle{color:hsl(var(--muted-foreground));margin-bottom:24px;line-height:1.5}

.field{margin-bottom:16px}
.field label{display:block;font-size:13px;font-weight:600;margin-bottom:8px;color:hsl(var(--foreground))}
.input,.field input,.field select,.field textarea{
  width:100%;height:48px;border:1.5px solid hsl(var(--border));background:hsl(var(--card));
  border-radius:12px;padding:0 16px;font-size:15px;font-family:inherit;color:hsl(var(--foreground));
  transition:all .2s;outline:none
}
.field textarea{height:auto;padding:14px 16px;min-height:96px;resize:vertical}
.input:focus,.field input:focus,.field select:focus,.field textarea:focus{border-color:hsl(var(--primary));box-shadow:0 0 0 4px hsl(var(--primary)/.12)}
.input-icon{position:relative}
.input-icon svg{position:absolute;left:14px;top:50%;transform:translateY(-50%);color:hsl(var(--muted-foreground));pointer-events:none}
.input-icon .input,.input-icon input{padding-left:44px}
.input-icon .toggle{position:absolute;right:10px;top:50%;transform:translateY(-50%);background:none;border:none;color:hsl(var(--muted-foreground));cursor:pointer;padding:8px;border-radius:6px}

.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;height:52px;padding:0 24px;border-radius:12px;font-weight:700;font-size:15px;border:none;cursor:pointer;transition:all .2s;font-family:inherit;width:100%}
.btn-primary{background:var(--gradient-primary);color:hsl(var(--primary-foreground));box-shadow:var(--shadow-glow)}
.btn-primary:hover{transform:translateY(-1px);box-shadow:0 12px 36px hsl(var(--primary-glow)/.45);text-decoration:none}
.btn-outline{background:hsl(var(--card));color:hsl(var(--foreground));border:1.5px solid hsl(var(--border))}
.btn-outline:hover{border-color:hsl(var(--primary));color:hsl(var(--primary));background:hsl(var(--accent));text-decoration:none}
.btn-ghost{background:transparent;color:hsl(var(--foreground))}
.btn-ghost:hover{text-decoration:none}

.btn-inline{width:auto;height:38px;padding:0 14px;font-size:13px}
.btn-stack{display:flex;flex-direction:column;gap:12px}

.row{display:flex;align-items:center;justify-content:space-between;margin-bottom:24px;font-size:14px}
.checkbox{display:flex;align-items:center;gap:8px;color:hsl(var(--muted-foreground));cursor:pointer}
.checkbox input{width:18px;height:18px;accent-color:hsl(var(--primary));cursor:pointer}

.divider{display:flex;align-items:center;gap:12px;margin:24px 0;color:hsl(var(--muted-foreground));font-size:13px}
.divider::before,.divider::after{content:'';flex:1;height:1px;background:hsl(var(--border))}

.socials{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:24px}
.social-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;height:48px;background:hsl(var(--card));border:1.5px solid hsl(var(--border));border-radius:12px;font-weight:600;font-size:14px;color:hsl(var(--foreground));cursor:pointer;transition:all .2s;font-family:inherit}
.social-btn:hover{border-color:hsl(var(--primary));background:hsl(var(--accent))}

.foot{text-align:center;font-size:14px;color:hsl(var(--muted-foreground));margin-top:24px}

.alert{padding:14px 16px;border-radius:12px;margin-bottom:20px;font-size:14px;display:flex;gap:10px;align-items:flex-start}
.alert-info{background:hsl(var(--accent));color:hsl(var(--accent-foreground))}
.alert-success{background:hsl(152 60% 95%);color:hsl(152 60% 25%);border:1px solid hsl(152 50% 80%)}
.alert-error{background:hsl(0 75% 96%);color:hsl(0 75% 35%);border:1px solid hsl(0 75% 88%)}

.helper{font-size:12px;color:hsl(var(--muted-foreground));margin-top:6px}
.error-text{font-size:13px;color:hsl(var(--destructive));margin-top:6px}

.code-input{display:flex;gap:10px;justify-content:center;margin:8px 0 24px}
.code-input input{width:52px;height:60px;text-align:center;font-size:22px;font-weight:700;border:1.5px solid hsl(var(--border));border-radius:12px;background:hsl(var(--card));font-family:inherit;color:hsl(var(--foreground))}
.code-input input:focus{outline:none;border-color:hsl(var(--primary));box-shadow:0 0 0 4px hsl(var(--primary)/.12)}

.icon-circle{width:72px;height:72px;border-radius:50%;background:hsl(var(--accent));display:grid;place-items:center;margin:0 auto 24px;color:hsl(var(--primary))}
.icon-circle-success{background:hsl(152 60% 92%)}
.icon-circle-danger{background:hsl(0 75% 96%);color:hsl(var(--destructive))}
.center{text-align:center}

.list-card{background:hsl(var(--card));border:1px solid hsl(var(--border));border-radius:14px;padding:16px;margin-bottom:10px;display:flex;align-items:center;gap:14px}
.list-card .ic{width:40px;height:40px;border-radius:10px;background:hsl(var(--accent));display:grid;place-items:center;color:hsl(var(--primary));flex-shrink:0}
.list-card .body{flex:1;min-width:0}
.list-card .body .t{font-weight:600;font-size:14px}
.list-card .body .s{font-size:12px;color:hsl(var(--muted-foreground));margin-top:2px}
.badge{padding:4px 10px;border-radius:999px;font-size:11px;font-weight:600;background:hsl(var(--accent));color:hsl(var(--accent-foreground))}
.badge-primary{background:hsl(var(--primary));color:hsl(var(--primary-foreground))}

.password-strength{height:6px;border-radius:3px;background:hsl(var(--muted));overflow:hidden;margin-top:8px}
.password-strength .bar{height:100%;width:65%;background:linear-gradient(90deg,hsl(152 60% 50%),hsl(152 70% 45%));border-radius:3px;transition:all .3s}

.spacer-24{height:24px}
.subtitle strong{color:hsl(var(--foreground))}
.section-heading{font-size:22px;font-weight:700;margin-bottom:12px}

.field ul.errorlist,.errorlist{
  margin:6px 0 0;
  padding-left:0;
  list-style:none;
  color:hsl(var(--destructive));
  font-size:13px;
}
