:root {
      --forest: #11342a;
      --forest-2: #2f6b5c;
      --leaf: #f5bd3d;
      --mist: #dce9df;
      --paper: #fffdf8;
      --line: #dfd8ca;
      --text: #10221d;
      --muted: #687871;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--text);
      background:
        radial-gradient(circle at 15% 5%, rgba(255, 255, 255, 0.6), transparent 28rem),
        linear-gradient(135deg, #d6e6da 0%, #c7d8cf 100%);
      font-family: "Poppins", Arial, sans-serif;
    }

    a {
      color: #0e4b3f;
      font-weight: 700;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    .loading-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9999;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.55);
    }

    .loading-overlay img {
      width: 100px;
      height: 100px;
    }

    .signup-shell {
      min-height: 100vh;
      display: grid;
      place-items: center;
      padding: 1.4rem;
      overflow: visible;
    }

    .signup-card {
      width: min(1040px, 100%);
      height: min(825px, calc(100vh - 2.8rem));
      min-height: 0;
      display: grid;
      grid-template-columns: 0.86fr 1fr;
      overflow: hidden;
      border-radius: 28px;
      background: var(--paper);
      box-shadow: 0 28px 70px rgba(16, 43, 35, 0.15);
    }

    .brand-panel {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: clamp(1.6rem, 3.5vh, 3rem) 2.8rem;
      overflow: hidden;
      color: #ffffff;
      background:
        linear-gradient(145deg, rgba(18, 58, 46, 0.97), rgba(10, 39, 32, 0.99)),
        url("./assets/img/indentify-tree.png") center / cover;
    }

    .brand-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(10, 42, 34, 0.78);
    }

    .vine {
      position: absolute;
      inset: 1.8rem auto -6rem -0.8rem;
      width: 210px;
      opacity: 0.48;
      pointer-events: none;
    }

    .vine path {
      fill: none;
      stroke: #6f8050;
      stroke-width: 2;
    }

    .vine ellipse {
      fill: #547448;
      opacity: 0.58;
    }

    .brand-panel > * {
      position: relative;
      z-index: 1;
    }

  .logo-row {
    display: inline-flex;
    margin-bottom: 1.6rem;
  }

  .logo-mark {
    display: grid;
    width: 56px;
    height: auto;
    place-items: center;
    border-radius: 9px;
  }

  .logo-mark img {
    width: 56px;
    height: auto;
    object-fit: contain;
  }

    .brand-copy {
      max-width: 365px;
    }

    .eyebrow {
      margin: 0 0 0.8rem;
      color: var(--leaf);
      font-size: 0.76rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    h1,
    .brand-title {
      margin: 0;
      font-family: "Cormorant Garamond", Georgia, serif;
      font-weight: 700;
      line-height: 0.95;
      letter-spacing: 0;
    }

    .brand-title {
      max-width: 365px;
      font-size: clamp(2.55rem, 3.5vw, 3.15rem);
      line-height: 1;
    }

    .brand-text {
      max-width: 365px;
      margin: 1.25rem 0 1.7rem;
      color: rgba(255, 255, 255, 0.86);
      font-size: 0.95rem;
      line-height: 1.55;
    }

    .stats {
      display: grid;
      max-width: 365px;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      padding-top: 1.75rem;
      border-top: 1px solid rgba(220, 233, 223, 0.2);
    }

    .stat strong {
      display: block;
      font-family: "Cormorant Garamond", Georgia, serif;
      color: #ffffff;
      font-size: 1.7rem;
      line-height: 1;
    }

    .stat span {
      display: block;
      margin-top: 0.42rem;
      color: rgba(255, 255, 255, 0.74);
      font-size: 0.73rem;
    }

    .form-panel {
      display: flex;
      align-items: flex-start;
      padding: clamp(1.5rem, 3vh, 2.5rem) 3.25rem;
      min-height: 0;
      overflow-y: auto;
    }

    .form-wrap {
      width: 100%;
      max-width: 468px;
      margin: auto;
    }

    .form-heading {
      margin-bottom: 1rem;
    }

    .form-heading h1 {
      font-size: clamp(2rem, 4vw, 2.45rem);
    }

    .form-heading p,
    .signin-bottom {
      margin: 0.4rem 0 0;
      color: var(--muted);
      font-size: 0.86rem;
    }

    .form-grid {
      display: grid;
      gap: 0.78rem;
    }

    .name-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
    }

    .field,
    .select-shell {
      width: 100%;
      min-height: 46px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: #ffffff;
      color: var(--text);
      font: inherit;
      font-size: 0.9rem;
      outline: none;
      transition: border-color 160ms ease, box-shadow 160ms ease;
    }

    .field {
      padding: 0 0.9rem;
    }

    .field:focus,
    .select-shell:focus-within {
      border-color: var(--forest-2);
      box-shadow: 0 0 0 3px rgba(47, 107, 92, 0.14);
    }

    .password-field {
      position: relative;
    }

    .password-field .field {
      padding-right: 3.2rem;
    }

    .eye-button {
      position: absolute;
      top: 50%;
      right: 0.9rem;
      display: grid;
      width: 30px;
      height: 30px;
      place-items: center;
      border: 0;
      background: transparent;
      color: #7a8982;
      cursor: pointer;
      transform: translateY(-50%);
    }

    .eye-button svg {
      width: 21px;
      height: 21px;
    }

    .hidden {
      display: none;
    }

    .signup-as > label {
      display: block;
      margin-bottom: 0.45rem;
      color: var(--muted);
      font-size: 0.73rem;
      font-weight: 800;
      text-transform: uppercase;
    }

    .select-shell {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      align-items: center;
      min-height: 50px;
      padding: 0.32rem;
      border-radius: 11px;
    }

    .type-option {
      position: relative;
      display: grid;
      min-height: 38px;
      place-items: center;
      margin-bottom: 0;
      border-radius: 7px;
      color: #3f514a;
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: none;
      line-height: 1;
      text-align: center;
      cursor: pointer;
    }

    .type-option input {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    .type-option:has(input:checked) {
      color: var(--forest);
      background: var(--leaf); /* #f5bd3d, your existing gold accent */
      font-weight: 700;
    }

    .password-meter {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.32rem;
      margin-top: -0.32rem;
    }

    .password-meter span {
      height: 4px;
      border-radius: 999px;
      background: #e5dfd3;
    }

    .password-hint {
      margin: -0.48rem 0 0;
      color: #60746b;
      font-size: 0.67rem;
    }

    .captcha-wrap {
      display: flex;
      justify-content: center;
      min-height: 0;
      overflow: hidden;
      transform: scale(0.86);
      transform-origin: top center;
      margin: -0.2rem 0 -0.85rem;
    }

    .terms {
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 0.75rem;
      align-items: start;
      color: var(--muted);
      font-size: 0.78rem;
      line-height: 1.45;
    }

    .terms input {
      width: 18px;
      height: 18px;
      margin: 0.15rem 0 0;
      accent-color: var(--forest-2);
    }

    .submit-button {
      display: inline-flex;
      width: 100%;
      min-height: 48px;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      border: 0;
      border-radius: 11px;
      background: var(--forest-2);
      color: #ffffff;
      font: inherit;
      font-weight: 800;
      cursor: pointer;
      transition: background 160ms ease, transform 160ms ease;
    }

    .submit-button:hover {
      background: #275a4d;
    }

    .submit-button:active {
      transform: translateY(1px);
    }

    .signin-bottom {
      margin-top: 0.9rem;
      text-align: center;
    }

    @media (max-width: 768px) {
      .signup-shell {
        height: auto;
        min-height: 100vh;
        padding: 1rem;
        overflow: visible;
      }

      .signup-card {
        height: auto;
        min-height: auto;
        grid-template-columns: 1fr;
        border-radius: 22px;
      }

      .brand-panel {
        display: none;
      }

      .form-panel {
        padding: 2rem;
      }
    }

    @media (max-width: 560px) {
      .signup-shell {
        display: block;
        padding: 1;
      }

      .signup-card {
        min-height: 100vh;
        border-radius: 0;
      }

      .form-panel {
        padding: 1.65rem 1.1rem 2rem;
      }

      .name-grid {
        grid-template-columns: 1fr;
      }

      .select-shell {
        grid-template-columns: 1fr;
        gap: 0.3rem;
      }

      .captcha-wrap {
        transform: scale(0.88);
        transform-origin: top center;
        margin-bottom: -0.6rem;
      }

      .stats {
        gap: 0.9rem;
      }
    }