
#wizard-form {
  background: #fdfdfd;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 2rem auto;
  font-family: sans-serif;
}
#wizard-form h3 { margin-top: 1.5rem; color: #0072ff; }
#wizard-form input, #wizard-form select {
  width: 100%; margin-top: .5rem; padding: .7rem;
  border: 1px solid #ccc; border-radius: 8px;
}
#wizard-form textarea {
  border: 1px solid #ccc;
  padding: 1rem;
  border-radius: 8px;
  background: #f7f7f7;
}
#wizard-form button {
  margin-top: 1rem;
  background: #00a8ff;
  color: white;
  padding: 10px 24px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
}
