
:root{
  --bg0:#05070d;
  --bg1:#0b1020;
  --text:#eaf0ff;
  --muted:#b7c2dd;
  --line:rgba(255,255,255,.12);
  --accent:#ff2d2d;
  --accent2:#28a7ff;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 20% 20%, rgba(40,167,255,.18), transparent 55%),
    radial-gradient(1100px 650px at 80% 40%, rgba(255,45,45,.16), transparent 55%),
    linear-gradient(180deg,var(--bg0),var(--bg1));
}
.wrap{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px 18px;
}
.card{
  width:min(980px, 100%);
  border:1px solid var(--line);
  background:rgba(10,14,28,.72);
  backdrop-filter: blur(10px);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 26px 70px rgba(0,0,0,.55);
  position:relative;
}
.grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
}
@media (max-width:860px){
  .grid{grid-template-columns:1fr}
}
.left{
  padding:28px;
}
.right{
  padding:28px;
  border-left:1px solid var(--line);
  background:
    radial-gradient(900px 400px at 50% 0%, rgba(255,45,45,.12), transparent 60%),
    radial-gradient(900px 400px at 50% 100%, rgba(40,167,255,.12), transparent 60%);
}
@media (max-width:860px){
  .right{border-left:none;border-top:1px solid var(--line)}
}
.logo{
  width:100%;
  max-width:560px;
  height:auto;
  display:block;
  margin:0 auto 14px;
  filter: drop-shadow(0 18px 35px rgba(0,0,0,.65));
}
.kicker{
  text-transform:uppercase;
  letter-spacing:.22em;
  font-weight:800;
  color:var(--muted);
  font-size:12px;
  text-align:center;
}
.h1{
  font-size:44px;
  line-height:1.05;
  font-weight:1000;
  margin:10px 0 10px;
  text-align:center;
}
@media (max-width:520px){
  .h1{font-size:34px}
}
.p{
  margin:0 auto;
  max-width:58ch;
  text-align:center;
  color:var(--muted);
  line-height:1.65;
  font-size:16px;
}
.badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:18px;
}
.badge{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  font-weight:800;
  font-size:12px;
  color:var(--text);
}
.badge b{color:#fff}
.formTitle{
  font-weight:950;
  font-size:18px;
  margin:0 0 10px;
}
.small{
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
}
hr{
  border:0;
  border-top:1px solid var(--line);
  margin:16px 0;
}
.row{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}
input, textarea, button{
  font:inherit;
}
.input, .textarea{
  width:100%;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  padding:12px 12px;
  outline:none;
}
.textarea{min-height:110px;resize:vertical}
.input:focus, .textarea:focus{
  border-color:rgba(40,167,255,.6);
  box-shadow:0 0 0 6px rgba(40,167,255,.10);
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  cursor:pointer;
  color:#0b1020;
  font-weight:950;
  background:linear-gradient(135deg, rgba(40,167,255,1), rgba(255,45,45,1));
}
.btn:hover{filter:brightness(1.05)}
.note{
  margin-top:10px;
  font-size:12px;
  color:var(--muted);
}
.footer{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:16px 22px;
  border-top:1px solid var(--line);
  background:rgba(0,0,0,.22);
  color:var(--muted);
  font-size:12px;
}
a{color:inherit}
.spark{
  position:absolute;
  inset:auto -120px -120px auto;
  width:320px;
  height:320px;
  background:radial-gradient(circle at 30% 30%, rgba(255,45,45,.45), transparent 55%),
             radial-gradient(circle at 70% 70%, rgba(40,167,255,.45), transparent 55%);
  filter:blur(26px);
  transform:rotate(15deg);
  opacity:.45;
  pointer-events:none;
}
