@font-face {
  font-family: "Kurale";
  src: url("./fonts/Kurale-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #1b1b1d;
  --panel: #222326;
  --text: #f2f2f4;
  --muted: #b6bac5;
  --accent: #ff934f;
  font-family: "Kurale", "Times New Roman", serif;
  color-scheme: dark;
}

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

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 20% 20%, #2a2b30, var(--bg) 45%),
    radial-gradient(circle at 80% 10%, #23242a, var(--bg) 40%),
    var(--bg);
  color: var(--text);
  padding: 24px;
}

.container {
  width: min(520px, 100%);
  background: var(--panel);
  padding: 36px 32px;
  border-radius: 18px;
  text-align: center;
  line-height: 1.5;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

h1 {
  margin: 0;
  font-size: 44px;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 24px;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  width: 100%;
}

.field span {
  color: var(--muted);
  font-size: 20px;
  text-align: left;
}

.field input {
  width: 100%;
  max-width: 400px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #3a3b42;
  background: #2a2c32;
  color: var(--text);
  font-size: 22px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

.field input::placeholder {
  color: #80848f;
}

.field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 147, 79, 0.18);
  transform: translateY(-1px);
}

.cta {
  width: 100%;
  max-width: 400px;
  margin: 12px auto 0;
  padding: 14px 18px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #ffb276);
  color: #1b1b1d;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(255, 147, 79, 0.35);
}

.cta:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(255, 147, 79, 0.25);
}

.progress {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  text-align: left;
}

.progress__bar {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb276, var(--accent));
  width: 0%;
  transition: width 0.25s ease;
  box-shadow: 0 6px 14px rgba(255, 147, 79, 0.3);
}

.progress__label {
  color: var(--muted);
  font-size: 18px;
}
