h2 {
  font-family: "Raleway";
  font-weight: 500;
  color: #333;
}

body {
  font-family: Arial, sans-serif;
  background-color: #ebeadf;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.title {
  font-family: "Raleway";
  font-size: 22px;
  font-weight: 800;
  font-style: normal;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  line-height: 1.4em;

  opacity: 0;
  animation: fade-in 2s 0.0136364s forwards;
}

.form-container {
  padding: 20px;
  width: 80%;
  height: 100%;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.progress-container {
  background-color: #e0e0e0;
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
  height: 25px;
  width: 100%;
}

.progress-bar {
  background-color: #f3d786;
  height: 100%;
  border-radius: 20px;
  width: 0%;
  transition: width 0.4s ease;
}

.step {
  font-size: 16px;
  font-weight: 800;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  line-height: 1.4em;
}

.section {
  display: none;
}

.section.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: fade-in 1s 0.0136364s forwards;
  width: 100%;
}

.button-container {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}

input {
  padding: 10px;
  margin: 5px;
  border-radius: 30px;
  border: 1px solid #ccc;
  width: 100%;
  box-shadow: 0 0 0 1px transparent;
}

button {
  padding: 10px 15px;
  border: none;
  background-color: #f3d786;
  color: white;
  cursor: pointer;
  border-radius: 5px;
  margin: 5px;
}

button:disabled {
  background-color: #ddd;
  cursor: not-allowed;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
