    :root {
      --gp-green:      #0a942b;
      --gp-green-dark: #077a23;
      --gp-green-rgb:  10, 148, 43;
    }

    .c-pointer{cursor: pointer;}
    .color-link {color: var(--gp-green);}

    html, body { height: 100%; margin: 0; }

    /* ════════════════════════════════
       COLONNE GAUCHE
    ════════════════════════════════ */
    .gp-left {
      background: linear-gradient(145deg, #064d17 0%, #0a7a22 55%, #0a942b 100%);
      position: relative;
      overflow: hidden;
    }
    .gp-left::before {
      content: '';
      position: absolute; top: -80px; right: -80px;
      width: 320px; height: 320px; border-radius: 50%;
      background: rgba(255,255,255,0.05); pointer-events: none;
    }
    .gp-left::after {
      content: '';
      position: absolute; bottom: 80px; left: -100px;
      width: 300px; height: 300px; border-radius: 50%;
      background: rgba(255,255,255,0.04); pointer-events: none;
    }

    .gp-logo-icon {
      width: 38px; height: 38px;
      background: rgba(255,255,255,0.2);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; font-weight: 800; color: #fff;
    }
    .gp-logo-text { font-size: 21px; font-weight: 700; letter-spacing: 2px; }

    .gp-headline { font-size: 2rem; line-height: 1.2; }
    .gp-headline span { color: #7dffa2; }

    .gp-check-icon {
      width: 22px; height: 22px; border-radius: 50%;
      background: rgba(255,255,255,0.25);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; font-size: 12px;
    }

    /* Maquette */
    .gp-mockup {
      background: rgba(255,255,255,0.08);
      border-radius: 12px;
      position: relative;
    }
    .gp-screen {
      background: #fff; border-radius: 8px; height: 120px;
      display: grid; grid-template-columns: 80px 1fr; overflow: hidden;
      box-shadow: 0 6px 24px rgba(0,0,0,0.3);
    }
    .gp-screen-sidebar { background: #064d17; padding: 10px; }
    .gp-screen-sidebar div { background: rgba(255,255,255,0.15); border-radius: 3px; height: 7px; margin-bottom: 7px; }
    .gp-screen-sidebar div:first-child { background: #0a942b; }
    .gp-screen-main { padding: 10px; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 6px; }
    .gp-item { background: #f0f0f0; border-radius: 4px; }
    .gp-phone {
      position: absolute; right: -4px; bottom: -8px;
      width: 56px; height: 94px; background: #fff;
      border-radius: 10px; border: 2px solid #d1d5db;
      overflow: hidden; box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    }
    .gp-phone-top { background: #064d17; height: 28px; }
    .gp-phone-body { padding: 5px; }
    .gp-phone-body div { background: #f0f0f0; height: 5px; border-radius: 2px; margin-bottom: 4px; }
    .gp-printer {
      position: absolute; left: 6px; bottom: -10px;
      width: 66px; height: 24px; background: #1f2937; border-radius: 4px;
    }
    .gp-printer::after {
      content: ''; display: block; width: 44px; height: 14px;
      background: #fff; margin: 0 auto; border-radius: 2px; transform: translateY(-14px);
    }

    /* Stats bas */
    .gp-stat-num { font-size: 15px; }
    .gp-stat-lbl { font-size: 10px; opacity: .55; }
    .gp-stat-icon { font-size: 20px; opacity: .7; }

    /* ════════════════════════════════
       COLONNE DROITE
    ════════════════════════════════ */
    .gp-right { background: #f8f9fb; }

    /* Floating label : icône à gauche */
    .gp-ff { position: relative; }

    .gp-ff > .bi {
      position: absolute;
      left: 0.75rem; top: 50%; transform: translateY(-50%);
      color: #9ca3af; font-size: 1rem; pointer-events: none; z-index: 6;
    }

    .gp-ff > .form-control,
    .gp-ff > .form-select {
      padding-left: 2.4rem;
    }

    /* Couleur focus Bootstrap override */
    .form-control:focus,
    .form-select:focus {
      border-color: var(--gp-green);
      box-shadow: 0 0 0 0.2rem rgba(var(--gp-green-rgb), 0.2);
    }

    /* Floating label couleur au focus */
    .form-floating > .form-control:focus ~ label,
    .form-floating > .form-select:focus ~ label {
      color: var(--gp-green);
    }

    /* Checkbox couleur */
    .form-check-input:checked {
      background-color: var(--gp-green);
      border-color: var(--gp-green);
    }
    .form-check-input:focus {
      border-color: var(--gp-green);
      box-shadow: 0 0 0 0.2rem rgba(var(--gp-green-rgb), 0.25);
    }

    /* Bouton CTA */
    .gp-btn {
      background: var(--gp-green);
      border: none;
      font-weight: 600;
      font-size: 15px;
      transition: background .2s, transform .1s;
    }
    .gp-btn:hover  { background: var(--gp-green-dark); }
    .gp-btn:active { transform: scale(0.99); }

    /* Lien login */
    .gp-link { color: var(--gp-green); font-weight: 500; }
    .gp-link:hover { color: var(--gp-green-dark); }

    /* Icône œil */
    .gp-eye {
      position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%);
      background: none; border: none; padding: 0;
      color: #9ca3af; font-size: 1rem; cursor: pointer; z-index: 6;
    }
    .gp-eye:hover { color: #374151; }

    /* Responsive */
    @media (max-width: 767px) {
      .gp-headline { font-size: 1.6rem; }
    }

    .centered {
      position: absolute;
      left: 50%;
      transform: translate(-50%);
      text-align: center;
    }
    .color-rouge-f1{
  color : rgb(240, 50, 40); font-size: 14px;
}