
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, Helvetica, sans-serif;
    }

    body {
      background: #f8fafc;
      color: #111827;
    }

    /* HEADER */
    .header {
      padding: 24px 60px;
      font-size: 22px;
      font-weight: bold;

      color: #2563eb;
    }
    a.header-link {
    text-decoration: none;
}


    /* STEPS */
    .steps {
      display: flex;
      justify-content: center;
      gap: 80px;
      margin-top: 20px;
    }

    .step {
      text-align: center;
      font-size: 14px;
      color: #6b7280;
    }

    .step-circle {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: #e5e7eb;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: auto;
      margin-bottom: 8px;
      font-weight: bold;
    }

    .step.active .step-circle {
      background: #2563eb;
      color: #fff;
    }

    .step.done .step-circle {
      background: #22c55e;
      color: #fff;
    }

    /* CARD */
    .card {
      background: #fff;
      width: 720px;
      margin: 60px auto;
      padding: 40px;
      border-radius: 18px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

    .card h2 {
      font-size: 22px;
      margin-bottom: 30px;
    }

    /* FORM GRID */
    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 30px;
    }

    input, select {
      width: 100%;
      padding: 14px 16px;
      border-radius: 10px;
      border: 1px solid #e5e7eb;
      font-size: 14px;
    }

    /* BUTTONS */
    .actions {
      display: flex;
      justify-content: space-between;
    }

    .btn {
      background: #2563eb;
      color: #fff;
      padding: 12px 28px;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      font-size: 14px;
    }

    .btn-back {
      background: #e5e7eb;
      color: #111827;
    }
    .error-text {
  color: #dc2626;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}


    /* RESPONSIVE */
    @media (max-width: 800px) {
      .card {
        width: 90%;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .steps {
        gap: 30px;
      }
      
    }
  