body {
  font-family: 'Open Sans', sans-serif;
  background: #0e0e1a;
  color: #fff;
  margin: 0;
  padding: 0;
}

.form-wrapper {
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  background: #1c1c2e;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 255, 200, 0.2);
}

.form-wrapper h1,
.form-wrapper h2 {
  text-align: center;
  color: #00ffe7;
  font-family: 'Montserrat', sans-serif;
}

.form-wrapper p {
  text-align: center;
  color: #ccc;
  margin-bottom: 30px;
}

form label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 600;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 10px;
  background: #2c2c3f;
  color: #fff;
  border: 1px solid #444;
  border-radius: 5px;
  font-size: 1em;
}

.checkbox-group {
  padding-left: 0;
  margin-bottom: 20px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #f0f0f0;
  margin: 8px 0;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #00ffe7;
}

button {
  margin-top: 20px;
  padding: 12px 25px;
  background: #00ffe7;
  color: #000;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  background: #00c2b0;
}

.nav-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

button.next-btn,
button.submit-btn,
button.prev-btn {
  display: block;
  margin: 30px auto 0;
  text-align: center;
}

.form-step {
  display: none;
  transition: opacity 0.4s ease;
}

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