/* Wrapper */
.signup-wrapper {
  background: #fffef8;
  border: 2px dashed #f8d24a;
  border-radius: 1.5rem;
  box-shadow: 0 0.75rem 1.25rem rgba(0,0,0,0.08);
  padding: 2rem;
  max-width: 720px;
  margin: 3rem auto;
}

/* Heading */
.signup-header {
  font-size: 2.2rem;
  color: #574f7d;
}

/* Labels */
.form-label {
  color: #574f7d;
  font-weight: 600;
}

/* Wizard pages */
.form-page { display: none; }
.form-page.active { display: block; }

/* Buttons */
.btn-next,
.btn-submit {
  background: #f8d24a;
  color: #574f7d;
  border: none;
}
.btn-next:hover,
.btn-submit:hover {
  background: #f7c91a;
  color: #3c3259;
}

/* Hidden iframe */
.hd-hidden {
  display: none;
  width: 0;
  height: 0;
  border: 0;
}

/* Submitting state */
#submitting {
  display: none;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

/* Thank-you box */
.thankyou {
  display: none;
  background: #d4edda;
  color: #155724;
  border-left: 5px solid #28a745;
  padding: 1rem;
  border-radius: 1rem;
  font-size: 1.1rem;
  text-align: center;
  margin-top: 1.5rem;
}