.form-container {
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      width: 100%;
      max-width: 400px;
      height: fit-content;
      margin: auto;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    h2 {
      margin-bottom: 10px;
    }

    .step {
      display: none;
    }

    .step.active {
      display: block;
    }

    .form-group {
      margin-bottom: 15px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    select {
      width: 100%;
      padding: 10px;
      margin-top: 5px;
      border: 1px solid #ccc;
      border-radius: 5px;
      background-color: #f9f9f9;
      appearance: none;
    }

    input.error,
    select.error {
      border-color: red;
    }

    .error-message {
      color: red;
      font-size: 12px;
      margin-top: 5px;
    }

    .radio-group {
      display: flex;
      gap: 10px;
      margin-top: 5px;
    }

    .button {
      background-color: #f37217;
      color: white;
      padding: 12px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      width: 100%;
      font-weight: bold;
    }

    .steps-indicator {
      display: flex;
      justify-content: space-between;
      margin-top: 20px;
      align-items: center;
      font-size: 14px;
    }

    .steps-indicator span {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    @media (max-width: 480px) {
      .form-container {
        padding: 15px;
      }
    }