:root{
  --bg:#0b0b10;
  --card:#12121b;
  --text:#f2f2f5;
  --muted:#b9b9c6;
  --accent:#69005d;
  --border:rgba(255,255,255,.12);
  --ok:#1f9d6a;
  --err:#d64b4b;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(105,0,93,.35), transparent 55%),
              radial-gradient(900px 500px at 80% 20%, rgba(35,162,218,.18), transparent 60%),
              var(--bg);
  color:var(--text);
}

.wrap{max-width:860px;margin:0 auto;padding:28px 16px}
.header{margin:12px 0 18px}
.brand{display:flex;gap:14px;align-items:center}
.logo{
  width:54px;height:54px;border-radius:14px;
  display:grid;place-items:center;
  background:linear-gradient(145deg, rgba(105,0,93,.9), rgba(105,0,93,.35));
  border:1px solid var(--border);
  font-weight:800;letter-spacing:.5px;
}
h1{margin:0;font-size:1.6rem}
.header p{margin:4px 0 0;color:var(--muted)}

.card{
  background:rgba(18,18,27,.92);
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  box-shadow:0 12px 40px rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
}

.field{display:block;margin:12px 0}
.field span{display:block;font-weight:600;margin-bottom:6px}
.field input,.field select{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--text);
  outline:none;
}
.field input:focus,.field select:focus{
  border-color:rgba(105,0,93,.75);
  box-shadow:0 0 0 3px rgba(105,0,93,.25);
}
.hint{display:block;color:var(--muted);margin-top:6px;font-size:.9rem}

.grid2{display:grid;grid-template-columns:1fr 1fr;gap:14px}
@media (max-width:720px){.grid2{grid-template-columns:1fr}}

.check{display:flex;gap:10px;align-items:flex-start;margin:14px 0 8px;color:var(--muted)}
.check input{margin-top:3px}
.check a{
  color:#fff;
  text-decoration: underline;
  text-decoration-color: rgba(105,0,93,.8);
}

.privacy-note{
  margin:10px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.btn{
  width:100%;
  border:0;
  padding:13px 14px;
  border-radius:12px;
  background:linear-gradient(145deg, rgba(105,0,93,1), rgba(105,0,93,.65));
  color:white;
  font-weight:700;
  cursor:pointer;
}
.btn[disabled]{opacity:.55;cursor:not-allowed}

.msg{margin-top:12px;min-height:22px;color:var(--muted)}
.msg.ok{color:var(--ok)}
.msg.err{color:var(--err)}

.footer{margin-top:18px;color:var(--muted);font-size:.9rem;text-align:center}

/* honeypot oculto */
.hp{position:absolute;left:-9999px;top:-9999px;height:1px;width:1px;overflow:hidden}
