/* styles.css - Light gradient + glass card */
:root{
  --bg1:#f8fafc;
  --grad1:#f6f8ff;
  --grad2:#eef7ff;
  --card:#ffffffcc;
  --muted:#6b7280;
  --accent:#0ea5e9;
  --glass-border: rgba(255,255,255,0.6);
  --glass-shadow: 0 6px 24px rgba(14,165,233,0.08);
  --radius:14px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(135deg,var(--grad1),var(--grad2) 60%);
  -webkit-font-smoothing:antialiased;
  color:#111827;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:48px;
}
.page{
  width:100%;
  max-width:980px;
}
.hero{
  display:flex;
  gap:32px;
  align-items:center;
  justify-content:space-between;
}
.brand{
  display:flex;
  align-items:center;
  gap:18px;
}
.brand img{height:64px; display:block;}
.brand h1{margin:0;font-size:22px;letter-spacing:0.6px;color:#0f172a;}
.glass{
  background:var(--card);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--glass-shadow);
  border:1px solid rgba(255,255,255,0.6);
  width:100%;
}
.layout{
  display:grid;
  grid-template-columns:430px 1fr;
  gap:28px;
  margin-top:22px;
}
.form label{display:block;font-weight:600;margin-bottom:8px;color:#0f172a}
.form input[type="email"],.form input[type="text"]{
  width:100%;padding:12px 14px;border-radius:10px;border:1px solid #e6e9ef;background:#fff;font-size:15px;
}
.btn{
  display:inline-block;padding:10px 16px;border-radius:10px;background:linear-gradient(90deg,var(--accent),#38bdf8);
  color:white;border:none;font-weight:700;cursor:pointer;margin-top:12px;
  box-shadow: 0 6px 18px rgba(14,165,233,0.14);
}
.muted{color:var(--muted);font-size:14px;margin-top:10px}
.notice{margin-top:14px;padding:10px;border-radius:10px;background:#f1faff;border:1px solid #dbf3ff;color:#0369a1}
.right-card{display:flex;flex-direction:column;gap:12px}
.card-title{font-weight:700;color:#0f172a}
.otp-box{display:flex;gap:8px;margin-top:8px}
.otp-box input{flex:1;padding:10px;border-radius:8px;border:1px solid #e6e9ef;text-align:center;font-size:16px}
.success{color:green}
@media (max-width:900px){
  .layout{grid-template-columns:1fr; padding:0}
  .brand h1{display:none}
}
