body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    color: #222;
    margin: 0;
    padding: 2rem;
  }
  
  .form-wrapper {
    max-width: 600px;
    margin: auto;
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .subtext {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.3rem;
  }
  
  input, select, textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
  }
  
  input:focus, select:focus, textarea:focus {
    border-color: #0077cc;
    outline: none;
  }
  
  .submit-btn {
    background: #0077cc;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
  }
  
  .submit-btn:hover {
    background: #005fa3;
  }
  
/*  */
.form-step {
  display: none;
}
.form-step.active {
  display: block;
}
#progressBar {
  margin-bottom: 1rem;
  font-weight: bold;
  color: #0077cc;
}