:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050814;
  color: #eaf8ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -20%, rgba(55, 229, 255, 0.18), transparent
    38rem),
    #050814;
}

main {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 72px;
}

.eyebrow,
h1,
h2 {
  letter-spacing: 0.08em;
}

.eyebrow {
  color: #37e5ff;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  margin: 10px 0 18px;
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: 1;
}

h2 {
  margin-top: 2rem;
  color: #37e5ff;
  font-size: 1.08rem;
  text-transform: uppercase;
}

p,
li {
  color: #b8c5d6;
  line-height: 1.65;
}

a {
  color: #37e5ff;
}

.card {
  margin-top: 28px;
  padding: clamp(20px, 5vw, 34px);
  border: 1px solid #20345c;
  border-radius: 22px;
  background: rgba(13, 23, 48, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

label {
  display: block;
  margin: 18px 0 7px;
  color: #dcecff;
  font-weight: 700;
}

input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #647596;
  border-radius: 11px;
  background: #0a1328;
  color: #fff;
  font: inherit;
}

button,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  background: #37e5ff;
  color: #071124;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
}

button.danger {
  background: #ff6b7a;
  color: #24060a;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.hidden {
  display: none;
}

.status {
  min-height: 26px;
  margin-top: 16px;
  color: #37e5ff;
  font-weight: 700;
}

.warning {
  color: #ffc857;
}

.danger-text {
  color: #ff8793;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

small {
  color: #8291a9;
}
