/* Modern elegant white UI */
:root{
  --bg:#ffffff;
  --text:#0b1220;
  --muted:#556070;
  --muted2:#738096;
  --line:#e6eaf0;
  --card:#ffffff;
  --shadow: 0 20px 50px rgba(15,23,42,.08);
  --shadow2: 0 8px 24px rgba(15,23,42,.08);
  --radius:18px;
  --radius2:14px;
  --focus: rgba(234,179,8,.35);
  --accent:#0b1220;
  --accent2:#111827;
  --chip:#f6f8fb;
  --chipLine:#e9eef5;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height:1.45;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

a{color:inherit}
.container{
  width:100%;
  max-width:980px;
  margin:0 auto;
  padding:28px 18px 40px;
}

.header{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:10px;
  padding:10px 0 18px;
}
.logoWrap{
  width:86px;height:86px;border-radius:999px;
  display:grid;place-items:center;
  border:1px solid var(--line);
  box-shadow: var(--shadow2);
  background:#fff;
}
.logoWrap img{width:64px;height:64px;object-fit:contain}
.kicker{
  font-size:14px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--muted2);
  margin-top:6px;
}
.title{
  font-size:30px;
  margin:0;
  letter-spacing:-0.02em;
}
.subtitle{
  font-size:14px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--text);
  margin:0;
}
.hero{
  margin-top:10px;
  display:grid;
  gap:14px;
  justify-items:center;
}
.hero h2{
  margin:0;
  font-size:46px;
  line-height:1.05;
  letter-spacing:-0.04em;
}
.hero p{
  margin:0;
  max-width:760px;
  color:var(--muted);
  font-size:16px;
}
.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-top:10px;
}
.chip{
  background:var(--chip);
  border:1px solid var(--chipLine);
  padding:10px 12px;
  border-radius:999px;
  font-size:14px;
  color:var(--muted);
}

.card{
  margin-top:18px;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.cardHead{
  padding:18px 18px 10px;
  border-bottom:1px solid var(--line);
}
.cardHead h3{
  margin:0;
  font-size:18px;
  letter-spacing:-.01em;
}
.cardHead p{
  margin:6px 0 0;
  color:var(--muted);
  font-size:14px;
}

.form{
  padding:16px 18px 18px;
  display:grid;
  gap:14px;
}
.grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}
@media (min-width:860px){
  .grid{grid-template-columns:1fr 1fr}
  .grid .full{grid-column:1/-1}
  .hero h2{font-size:56px}
}
.field{
  display:grid;
  gap:8px;
}
.labelRow{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:baseline;
}
label{
  font-weight:800;
  font-size:14px;
}
.hint{
  font-size:12px;
  color:var(--muted2);
}
.req{color:#b45309}
.input{
  width:100%;
  padding:13px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  font-size:15px;
  outline:none;
  transition: box-shadow .15s ease, border-color .15s ease, transform .05s ease;
}
.input:focus{
  border-color: rgba(234,179,8,.55);
  box-shadow: 0 0 0 6px var(--focus);
}
.input::placeholder{color:#9aa6b2}

.actions{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:flex-end;
  padding-top:6px;
}
.btn{
  appearance:none;
  border:none;
  cursor:pointer;
  border-radius:999px;
  padding:12px 18px;
  font-weight:900;
  font-size:15px;
  background:var(--accent);
  color:#fff;
  box-shadow: 0 10px 22px rgba(15,23,42,.16);
  transition: transform .06s ease, box-shadow .18s ease;
}
.btn:hover{box-shadow: 0 16px 30px rgba(15,23,42,.18)}
.btn:active{transform: translateY(1px)}

.note{
  margin-top:14px;
  color:var(--muted2);
  font-size:13px;
}
.footer{
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid var(--line);
  color:var(--muted2);
  font-size:13px;
  text-align:center;
}

.alert{
  background:#fff7ed;
  border:1px solid #fed7aa;
  color:#7c2d12;
  border-radius:14px;
  padding:12px 14px;
  font-size:14px;
}

.success{
  max-width:780px;
  margin:0 auto;
}

.smallLink{
  color:var(--muted2);
  text-decoration:underline;
}
