/*body {
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}*/

.form-container {
  background: #222;
  padding: 30px 100px;
  border-radius: 10px;
  width: 100%;
  text-align: center;
}

.form-step {
  display: none;
}
.form-step.active {
  display: block;
}

/*h2 span {
  color: #00ff88;
}*/

/*form-step, textarea, input {
  width: 100%;
  padding: 12px;
  margin: 15px 0;
  border: 1px solid #00ff88;
  border-radius: 6px;
  background: transparent;
  color: #fff;
}*/

textarea, input {
  width: 100%;
  padding: 12px;
  margin: 15px 0;
  border: 1px solid #00ff88;
  border-radius: 6px;
  background: transparent;
  color: #fff;
}

.options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.options button {
  padding: 10px 15px;
  border: 1px solid #555;
  background: transparent;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}
.options button:hover {
  border-color: #00ff88;
  color: #00ff88;
}

/*.buttons {
  margin-top: 20px;
}
button {
  padding: 10px 20px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}
button:hover {
  border-color: #00ff88;
  color: #00ff88;
}*/

.step-indicators {
  margin-top: 20px;
}
.step-indicators span {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background: #555;
  border-radius: 50%;
  display: inline-block;
}
.step-indicators span.active {
  background: #00ff88;
}
