*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --gd: #0D3E26;   /* Deep Emerald Green */
    --gm: #145334;   /* Medium Forest Green */
    --gl: #1B6A43;   /* Light Vibrant Green */
    --gp: #F1F9F4;   /* Soft Mint Paste Background */
    --ac: #FAB818;   /* Marigold Golden-Yellow */
    --ach: #E09E0B;  /* Darker Gold Accent */
    --td: #092617;   /* Dark Slate Text */
    --tm: #244C36;   /* Medium Slate Text */
    --tl: #527A63;   /* Soft Muted Green Text */
  }
  body {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    background: linear-gradient(135deg, var(--gd) 0%, var(--gm) 100%);
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    padding: 30px;
  }

  .form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background-color: #ffffff;
    padding: 40px;
    width: 420px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(9, 38, 23, 0.25);
  }
  .form-title { text-align: center; margin-bottom: 6px; }
  .form-title h2 {
    color: var(--gd); font-size: 22px; font-weight: 800;
  }
  .form-title p { color: var(--tl); font-size: 13px; margin-top: 4px; }

  ::placeholder {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    color: var(--tl);
  }

  .flex-column > label {
    color: var(--gd);
    font-weight: 700;
    font-size: 13px;
  }
  .inputForm {
    border: 1.5px solid var(--gp);
    background: var(--gp);
    border-radius: 10px;
    height: 50px;
    display: flex;
    align-items: center;
    padding-left: 12px;
    transition: 0.2s ease-in-out;
  }
  .inputForm svg path, .inputForm svg g { fill: var(--gl); }
  .input {
    margin-left: 10px;
    border-radius: 10px;
    border: none;
    background: transparent;
    width: 85%;
    height: 100%;
    color: var(--td);
    font-size: 14px;
  }
  .input:focus { outline: none; }
  .inputForm:focus-within {
    border-color: var(--gl);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(27, 106, 67, 0.1);
  }
  .toggle-eye { cursor: pointer; flex-shrink: 0; margin-right: 4px; }
  .toggle-eye path { fill: var(--tl); }

  .flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
  }
  .flex-row > div {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .flex-row > div > label {
    font-size: 13px;
    color: var(--tm);
    font-weight: 500;
  }
  input[type="checkbox"] { accent-color: var(--gl); width: 15px; height: 15px; cursor: pointer; }

  .span {
    font-size: 13px;
    color: var(--gl);
    font-weight: 700;
    cursor: pointer;
    transition: color 0.2s;
  }
  .span:hover { color: var(--ac); }

  .button-submit {
    margin: 14px 0 4px 0;
    background-color: var(--ac);
    border: none;
    color: var(--gd);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 10px;
    height: 50px;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s;
  }
  .button-submit:hover { background-color: var(--ach); transform: translateY(-2px); }
  .button-submit:active { transform: translateY(0); }

  .p {
    text-align: center;
    color: var(--tm);
    font-size: 13px;
    margin: 2px 0;
  }
  .p .span { margin-left: 3px; }

  .line {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--tl);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .line::before, .line::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(13, 62, 38, 0.1);
  }

  .btn {
    width: 100%;
    height: 48px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    gap: 10px;
    border: 1.5px solid rgba(13, 62, 38, 0.12);
    background-color: #fff;
    color: var(--tm);
    cursor: pointer;
    transition: 0.2s ease-in-out;
  }
  .btn:hover {
    border-color: var(--gl);
    background: var(--gp);
  }
  .social-row { display: flex; gap: 10px; }
  .social-row .btn { margin-top: 0; }