:root {
  --bg1:#07111d;
  --bg2:#0b1526;
  --card:rgba(14,24,39,.88);
  --line:rgba(91,214,255,.20);
  --text:#f4f7fb;
  --muted:#a9b4c3;
  --cyan:#59d7ff;
  --cyan2:#9aefff;
  --shadow:0 10px 40px rgba(0,0,0,.35);
  --radius:24px;
}

* {
  box-sizing:border-box;
  -webkit-tap-highlight-color:transparent;
}

body {
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(89,215,255,.10), transparent 30%),
    radial-gradient(circle at bottom right, rgba(89,215,255,.05), transparent 22%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
  min-height:100vh;
}

.wrap {
  max-width:540px;
  margin:0 auto;
  padding:22px 16px 40px;
}

.brand {
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}

.logo {
  width:58px;
  height:58px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  font-weight:800;
  color:white;
  background:linear-gradient(135deg, rgba(89,215,255,.24), rgba(89,215,255,.10));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
}

.brand h1 {
  margin:0;
  font-size:30px;
  line-height:1;
  font-weight:800;
  letter-spacing:.2px;
}

.brand p {
  margin:7px 0 0;
  color:var(--muted);
  font-size:14px;
}

.card {
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
  backdrop-filter:blur(12px);
  margin-bottom:14px;
}

h1,h2,h3 {
  color:var(--text);
}

p,.muted {
  color:var(--muted);
  line-height:1.55;
}

input, select, textarea {
  width:100%;
  min-height:52px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  color:var(--text);
  padding:14px;
  font-size:16px;
  outline:none;
}

input::placeholder {
  color:#7f91a8;
}

button, .btn {
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  width:100%;
  border-radius:18px;
  text-decoration:none;
  font-weight:800;
  font-size:17px;
  letter-spacing:.2px;
  border:none;
  cursor:pointer;
}

button, .btn.primary {
  color:#082130;
  background:linear-gradient(180deg, var(--cyan2), var(--cyan));
  box-shadow:0 10px 24px rgba(89,215,255,.20);
}

.btn.secondary, button.secondary {
  color:#dffbff;
  background:linear-gradient(180deg, rgba(14,56,76,.95), rgba(12,41,58,.95));
  border:1px solid rgba(89,215,255,.25);
}

.small {
  font-size:13px;
  color:#8fa1b8;
}
