:root {
  color-scheme: dark;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #03050e;
  color: #f1f5f9;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background-image: radial-gradient(
      circle at top left,
      rgba(61, 63, 148, 0.35),
      transparent 45%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(26, 93, 124, 0.25),
      transparent 40%
    ),
    url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' width='16' height='16' fill='none'%3E%3Ccircle fill='%238183f4' id='pattern-circle' cx='10' cy='10' r='2.5'%3E%3C/circle%3E%3C/svg%3E");
  background-color: #020617;
  background-size: 100% 100%, 100% 100%, 32px 32px;
}

.page {
  display: flex;
  min-height: 100vh;
  padding: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  justify-content: center;
}

.card {
  max-width: 640px;
  width: 100%;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 32px;
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: 0 20px 45px rgba(2, 6, 23, 0.7);
}

.brand {
  margin: 0 0 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a5b4fc;
  text-align: center;
}

.commingSoon {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  color: #f8fafc;
  text-align: center;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.input-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.input {
  flex: 1;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.8);
  color: #f8fafc;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input:focus-visible {
  outline: none;
  border-color: #a5b4fc;
  box-shadow: 0 0 0 3px rgba(165, 180, 252, 0.2);
}

.button {
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: #020617;
  background: linear-gradient(135deg, #22d3ee, #a5b4fc);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(15, 23, 42, 0.35);
}

.button:active {
  transform: translateY(0);
}

.footnote {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.85);
}

@media (min-width: 640px) {
  .input-row {
    flex-direction: row;
    align-items: center;
  }

  .button {
    width: auto;
    white-space: nowrap;
  }
}
