:root {
  --ink: #071426;
  --ink-light: #0d2340;
  --paper: #f6f8fc;
  --blue: #1592ff;
  --lime: #caff44;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  background: radial-gradient(circle at 15% 13%, #123f74 0, transparent 29rem), radial-gradient(circle at 85% 90%, #113553 0, transparent 31rem), var(--ink);
}

.verify-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 28px;
}

.verify-card {
  width: min(100%, 470px);
  padding: 48px;
  border: 1px solid rgba(202, 255, 68, .5);
  background: rgba(7, 20, 38, .9);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
}

.verify-logo {
  display: block;
  width: 190px;
  max-width: 100%;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.divider { width: 50px; height: 2px; margin: 42px 0 22px; background: var(--lime); }
.eyebrow { margin: 0 0 10px; color: var(--lime); font-size: 11px; font-weight: 800; letter-spacing: .18em; }
h1 { margin: 0; font-family: Georgia, "Songti SC", serif; font-size: clamp(34px, 6vw, 46px); letter-spacing: .04em; }
.description { margin: 18px 0 32px; color: rgba(246, 248, 252, .72); line-height: 1.8; }
form { display: grid; gap: 12px; }
label { font-size: 15px; }
label strong { color: var(--lime); font-family: Georgia, serif; font-size: 18px; }
input {
  width: 100%;
  padding: 15px 14px;
  border: 1px solid rgba(246, 248, 252, .45);
  border-radius: 0;
  outline: none;
  color: var(--paper);
  font: inherit;
  background: transparent;
}
input:focus { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(202, 255, 68, .12); }
.hint, .privacy { margin: 0; color: rgba(246, 248, 252, .55); font-size: 12px; line-height: 1.7; }
.error { margin: 2px 0; color: #ffd0c4; font-size: 13px; }
button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 12px;
  padding: 15px 17px;
  border: 1px solid var(--lime);
  cursor: pointer;
  color: var(--ink);
  font: 700 15px "Microsoft YaHei", sans-serif;
  background: var(--lime);
  transition: transform .2s ease, background .2s ease;
}
button:hover { transform: translateY(-2px); background: #dcff83; }
button span { font-size: 20px; }
.privacy { margin-top: 28px; text-align: center; }

@media (max-width: 520px) {
  .verify-page { padding: 16px; }
  .verify-card { padding: 34px 26px; }
  .divider { margin-top: 34px; }
}
