  /* ===== REGISTER (2 STEPS, NO TOP STEPPER, WHITE TOPBAR) ===== */
  .auth-page {
      padding: 85px 0;
      position: relative;
      display: flex;
      align-items: center;
  }



  .auth-shell {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 820px;
      margin: 0 auto;
      border-radius: 24px;
      background: #fff;
      border: 1px solid rgba(0, 0, 0, .06);
      box-shadow: 0 35px 100px rgba(0, 0, 0, .12);
      overflow: hidden;
  }

  /* WHITE TOPBAR */
  .auth-top {
      padding: 18px 22px;
      background: #fff;
      border-bottom: 1px solid rgba(0, 0, 0, .06);
  }

  .auth-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
  }

  .auth-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
  }

  .auth-logo img {
      height: 26px;
  }

  .auth-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 12px;
      border-radius: 999px;
      background: rgba(0, 0, 0, .04);
      border: 1px solid rgba(0, 0, 0, .06);
      font-size: 12px;
      font-weight: 850;
      letter-spacing: .2px;
      white-space: nowrap;
      color: rgba(0, 0, 0, .72);
  }

  .auth-body {
      padding: 26px;
  }

  @media (max-width: 575px) {

      .auth-top,
      .auth-body {
          padding: 18px;
      }

      .auth-shell {
          border-radius: 18px;
      }
  }

  .head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 18px;
  }

  .head h1 {
      font-size: 26px;
      font-weight: 600;
      margin: 0 0 6px;
      line-height: 1.15;
  }

  .head p {
      margin: 0;
      color: rgba(0, 0, 0, .60);
      font-weight: 500;
  }

  .step-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 12px;
      border-radius: 999px;
      background: rgba(0, 0, 0, .03);
      border: 1px solid rgba(0, 0, 0, .06);
      font-size: 12px;
      font-weight: 500;
      color: rgba(0, 0, 0, .65);
      white-space: nowrap;
  }

  /* grid */
  .grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
  }

  @media (max-width: 767px) {
      .grid {
          grid-template-columns: 1fr;
      }
  }

  .field {
      margin-bottom: 0;
  }

  .field .lbl {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 8px;
      font-size: 13px;
      font-weight: 600;
      color: rgba(0, 0, 0, .75);
  }

  .field .lbl .hint {
      font-size: 12px;
      font-weight: 500;
      color: rgba(0, 0, 0, .45);
  }

  .inwrap {
      position: relative;
  }

  .inicon {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 18px;
      color: rgba(0, 0, 0, .45);
      z-index: 999;
  }

  .auth-input,
  .auth-select {
      width: 100%;
      height: 54px;
      border-radius: 14px;
      border: 1px solid rgba(0, 0, 0, .12);
      padding: 0 14px 0 46px;
      outline: none;
      transition: .2s ease;
      font-weight: 500;
      background: #fff;
  }

  .auth-select {
      padding-left: 46px;
      appearance: none;
  }

  .auth-input:focus,
  .auth-select:focus {
      border-color: rgba(0, 0, 0, .35);
      box-shadow: 0 0 0 4px rgba(0, 0, 0, .06);
  }

  .select-arrow {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: rgba(0, 0, 0, .45);
      pointer-events: none;
  }

  .pw-btn {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 12px;
      border: 1px solid rgba(0, 0, 0, .10);
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
  }

  /* step panes (2-step, but no top stepper) */
  .step-pane {
      display: none;
  }

  .step-pane.active {
      display: block;
  }

  /* actions */
  .actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 18px;
      justify-content: space-between;
  }

  .actions .left,
  .actions .right {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: center;
  }

  .actions .primary-btn6 {
      justify-content: center;
      white-space: nowrap;
  }

  .helper {
      margin-top: 16px;
      padding: 14px;
      border-radius: 16px;
      background: rgba(0, 0, 0, .03);
      border: 1px solid rgba(0, 0, 0, .06);
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: rgba(0, 0, 0, .65);
      font-size: 14px;
  }

  .helper i {
      font-size: 18px;
      margin-top: 1px;
  }

  .bottom-links {
      margin-top: 14px;
      display: flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      font-size: 14px;
  }

  .bottom-links a {
      text-decoration: none;
      font-weight: 900;
  }

  /* validation */
  .err {
      display: none;
      margin-top: 6px;
      font-size: 12px;
      font-weight: 500;
      color: #b00020;
  }

  .is-invalid {
      border-color: rgba(176, 0, 32, .45) !important;
      box-shadow: 0 0 0 4px rgba(176, 0, 32, .08) !important;
  }
  .primary-btn6{
    border: 0;
  }