@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --bg: #0B062B;
  --accent: #00C2FF;
  --accent-2: #7A5CFF;
  --gradient-primary: linear-gradient(100deg, #00C2FF 0%, #7A5CFF 100%);
  --card: rgba(122, 92, 255, .10);
  --card-border: rgba(0, 194, 255, .22);
  --text-dim: rgba(255, 255, 255, .72);
  --radius: 16px;
  --glow: 0 8px 30px -6px rgba(0, 194, 255, .45);
}

html {
  position: relative;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(900px 500px at 85% -5%, rgba(122, 92, 255, .3), transparent 60%),
    radial-gradient(700px 500px at 0% 10%, rgba(0, 194, 255, .16), transparent 55%),
    var(--bg);
  color: #fff;
  font-family: "Roboto", sans-serif;
  position: relative;
  overflow-x: hidden;
  line-height: 1.5;
}

.container {
  max-width: 620px;
  padding: 0 24px;
  margin: 0 auto;
}

.button {
  background: var(--gradient-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 15px 30px;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .3px;
  color: #fff;
  width: 100%;
  box-shadow: var(--glow);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -6px rgba(0, 194, 255, .6);
  filter: brightness(1.06);
}

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

.button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 0;
}

.header img {
  height: 40px;
  width: auto;
}

.main {
  min-height: 100vh;
  padding-bottom: 60px;
}

/* FORM */
.form-container {
  margin-top: 8px;
}

.form-step {
  display: none;
  animation: fadeIn .4s ease;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-title {
  font-family: "Sora", sans-serif;
  font-size: 26px;
  text-transform: none;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.4px;
  text-align: center;
}

.step-description {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 16px;
  font-size: 13px;
  color: var(--text-dim);
}

.step-description img {
  width: 48px;
  flex-shrink: 0;
}

.steps-progress {
  margin-top: 26px;
  display: flex;
  gap: 8px;
}

.steps-progress__item {
  display: block;
  flex: 1;
  height: 6px;
  border-radius: 1000px;
  background: rgba(255, 255, 255, .14);
  transition: background .3s ease;
}

.steps-progress__item.active {
  background: var(--gradient-primary);
}

.step-inputs {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-inputs label {
  background: var(--card);
  border: 1px solid var(--card-border);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 15px;
  transition: border-color .2s ease, background .2s ease;
}

.step-inputs label:hover {
  border-color: var(--accent);
}

.step-inputs label:has(input:checked) {
  border-color: var(--accent);
  background: rgba(0, 194, 255, .14);
}

.step-inputs input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--card-border);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color .2s ease;
}

.step-inputs input[type="radio"]:checked {
  border-color: var(--accent);
}

.step-inputs input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--gradient-primary);
}

.step-inputs .button {
  margin-top: 8px;
}

.step-inputs .input {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--card-border);
  width: 100%;
  padding: 15px 16px;
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.step-inputs .input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 194, 255, .16);
}

.step-inputs .input::placeholder {
  color: rgba(255, 255, 255, .5);
}

.error-msg {
  display: none;
  color: #ff6b6b;
  font-size: 13px;
  margin-top: -4px;
  padding-left: 4px;
}

/* circles */
.circles span {
  position: absolute;
  background-color: var(--accent-2);
  opacity: .5;
  border-radius: 50%;
  z-index: -10;
}

.circle-1 {
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  filter: blur(70px);
  background-color: var(--accent);
}

.circle-2 {
  bottom: 0;
  left: -150px;
  width: 400px;
  height: 400px;
  filter: blur(120px);
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
