:root{
  --bg:#08101d;
  --bg2:#0d1527;
  --card:#121a2b;
  --line:#26324d;
  --line-strong:#3a4f79;
  --text:#eef3ff;
  --muted:#9aa8c8;
  --muted-2:#b8c3dc;
  --accent:#4f8cff;
  --accent-2:#2f6fe8;
  --success:#19c37d;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  background:radial-gradient(circle at top, #13203d 0%, var(--bg2) 38%, var(--bg) 100%);
  color:var(--text);
}
.wrap{min-height:100vh;display:flex;align-items:center;justify-content:center;padding:36px 16px}
.card{
  width:min(820px,100%);
  background:rgba(18,26,43,.97);
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:0 28px 90px rgba(0,0,0,.42);
  padding:30px;
}
.card.small{width:min(600px,100%)}
.topbar{display:flex;justify-content:space-between;align-items:flex-start;gap:16px;margin-bottom:18px}
.eyebrow{color:#9cc0ff;text-transform:uppercase;letter-spacing:.14em;font-size:12px;font-weight:800}
.subeyebrow{margin-top:6px;color:var(--muted);font-size:13px}
.lang-switch{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
}
.lang-switch a{
  min-width:112px;
  text-align:center;
  padding:10px 14px;
  border:1px solid var(--line-strong);
  border-radius:999px;
  color:var(--muted-2);
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  background:#0e172b;
  transition:.18s ease;
}
.lang-switch a:hover{border-color:#5d82c9;color:#fff;transform:translateY(-1px)}
.lang-switch a.active{
  color:#fff;
  background:linear-gradient(180deg,#2359c6,#1a469c);
  border-color:#6c95ea;
  box-shadow:0 10px 25px rgba(47,111,232,.24);
}
h1{margin:0 0 12px;font-size:38px;line-height:1.08;letter-spacing:-.02em}
.lead{margin:0 0 18px;color:var(--muted);font-size:16px;line-height:1.68}
.info-strip{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:13px 14px;
  margin:0 0 22px;
  border:1px solid #20487a;
  border-radius:14px;
  background:rgba(22,47,84,.34);
  color:#d7e5ff;
  font-size:14px;
  line-height:1.55;
}
.info-dot{width:10px;height:10px;border-radius:50%;background:var(--accent);margin-top:6px;flex:0 0 auto}
.form{display:grid;gap:16px}
.grid{display:grid;gap:16px}
.grid.two{grid-template-columns:1fr 1fr}
label{display:grid;gap:8px;font-weight:600;font-size:14px;color:#e8efff}
input,select,textarea{
  width:100%;
  border:1px solid var(--line);
  background:#0d1527;
  color:var(--text);
  border-radius:14px;
  padding:13px 14px;
  font:inherit;
  outline:none;
  transition:border-color .16s ease, box-shadow .16s ease;
}
input::placeholder, textarea::placeholder{color:#7f8fb2}
input:focus,select:focus,textarea:focus{border-color:#6294ff;box-shadow:0 0 0 4px rgba(79,140,255,.14)}
textarea{resize:vertical;min-height:180px}
.actions{display:flex;justify-content:flex-start;padding-top:4px}
button,.back{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  border:none;
  border-radius:14px;
  padding:0 20px;
  background:linear-gradient(180deg,var(--accent),var(--accent-2));
  color:#fff;
  font-weight:800;
  text-decoration:none;
  cursor:pointer;
  box-shadow:0 14px 28px rgba(47,111,232,.25);
}
button:hover,.back:hover{filter:brightness(1.05)}
.success-mark{
  width:58px;height:58px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:rgba(25,195,125,.14);color:var(--success);
  border:1px solid rgba(25,195,125,.34);
  font-size:30px;font-weight:900;margin-bottom:14px;
}
.note{margin:8px 0 0;color:var(--muted-2);font-size:14px;line-height:1.6}
.note-soft{color:var(--muted)}
@media (max-width:720px){
  .card{padding:22px}
  .topbar{flex-direction:column;align-items:flex-start}
  .lang-switch{justify-content:flex-start}
  .lang-switch a{min-width:0;flex:1 1 auto}
  .grid.two{grid-template-columns:1fr}
  h1{font-size:30px}
}
