body {
    font-family: Poppins, sans-serif;
    text-align: center;
    margin: 0;
    padding: 20px;
    background-color: #f9f9f9;
  }

  h2 {
    margin-bottom: 20px;
    font-size:36px;
  }
#stepp {
  line-height: 1.2;
  font-size: 22px;
  color: #000000;
  display: flex;
  justify-content: center;
}
#step-question {
   font-size: 30px;
   line-height: 1.2;
    color: #000000;
    display: flex;
    justify-content: center;
}
  .step, #final-step {
    display: none;
   /*max-width: 800px; */
    margin: 0 auto;
    background: #fff;
    padding: 40px 20px 40px 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #12205d;
  }

  .step.active {
    display: block;
  }

  .options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }

  .options button {
    width: 200px;
    font-size: 18px;
    line-height: 1.2;
    text-transform: capitalize;
    padding: 25px 10px 25px 10px;
    border: none;
    background-color: #12205d;
    color: white;
    cursor: pointer;
    border-radius: 8px;
    text-align: center;
    transition: background-color 0.3s;
  }

  .options button:hover {
    background-color: #0056b3;
  }

  .options button img {
    margin-top: 20px;
    width: 90px;
    height: auto;
  }

  form {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
  }

  form p {
    margin-bottom: 15px;
  }

  input[type="text"], input[type="email"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  button[type="submit"] {
      background-color: #12205d;
    padding: 10px 20px;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }

  button[type="submit"]:hover {
    background-color: #0067ff;
  }

  /* Responsive: Vertical layout on small screens */
  @media (max-width: 600px) {
    .options {
      flex-direction: column;
      align-items: center;
    }

    .options button {
      width: 90%;
    }
  }


.step-form-response.error {
  color:red;
}

.step-form-response.success {
  color:green;
}
