@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --gradient-primary: linear-gradient(70deg, #0099E6, #69CDFF)
}

html {
  position: relative;
  overflow-x: hidden;
}

body {
  background-color: #0B062B;
  color: #fff;
  font-family: "Roboto", sans-serif;
  position: relative;
  overflow-x: hidden;
  line-height: 120%;
}

.container {
  max-width: 600px;
  padding: 0 24px;
  margin: 0 auto;

}

.button {
  background: var(--gradient-primary);
  display: block;
  border-radius: 8px;
  line-height: 120%;
  padding: 12px 32px;
  font-size: 18px;
  font-weight: 600;
  width: 100%;
}

.section-title {
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 26px;
  line-height: 140%;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
}

.main {
  min-height: 100vh;
  padding-bottom: 50px;
}

/* FORM */
.form-container {}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.step-title {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 120%;
  text-align: center;
}

.step-description {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(79, 154, 190, .2);
  border-radius: 12px;
  padding: 12px;
  font-size: 12px;
}

.step-description img {
  width: 46px;
}

.step-description p {}

.steps-progress {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

.steps-progress__item {
  display: block;
  flex: 1;
  height: 5px;
  border-radius: 1000px;
  background: rgba(255, 255, 255, .8);
}

.steps-progress__item.active {
  background: var(--gradient-primary);

}

.step-inputs {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-inputs label {
  background-color: rgba(79, 154, 190, .2);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
}

.step-inputs .input {
  background-color: rgba(79, 154, 190, .2);
  width: 100%;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
}

.step-inputs .input::placeholder {
  color: rgba(255, 255, 255, .8);
}

.final-text {
  text-align: center;
  margin-top: 24px;
}

.final-img {
  margin: 24px auto 0;
}

/* circles */
.circles {}

.circles span {
  position: absolute;
  background-color: #4F9ABE;
  opacity: .5;
  border-radius: 50%;
  z-index: -10;
}

.circle-1 {
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  filter: blur(50px);
}

.circle-2 {
  bottom: 00px;
  left: -150px;
  width: 400px;
  height: 400px;
  filter: blur(100px);
}