.nova-form,
  .nova-form *,
  .nova-form *::before,
  .nova-form *::after {
    box-sizing: border-box;
  }

  .nova-form :is(svg, img) {
    display: block;
    max-width: 100%;
    height: auto;
  }

  .nova-form {
    --nv-ink: #000000;
    --nv-muted: #5b6c88;
    --nv-line: #D3D3D3;
    --nv-bg: #f7faff;
    --nv-card: #FFFFFF;
    --nv-blue: #10367A;
    --nv-blue-2: #FE5716;
    --nv-cyan: #FE5716;
    --nv-shadow: 0 22px 60px rgba(16, 54, 122, .12);
    --nv-r: 18px;

    color: var(--nv-ink);
    min-height: 0 !important;
    /* n'occupe pas toute la hauteur */
    padding: 0 !important;
    display: block !important;
    place-items: start !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    box-shadow: none !important;
    border: none !important;
    margin: 0 !important;
  }

  .nv-wrap,
  .nv-card,
  .nv-body,
  .nv-head {
    /* padding: 0 !important; */
    margin: 0 !important;
    box-shadow: none !important;
    border: none !important;
  }

  .nv-lines {
    display: none;
    position: absolute;
    inset: -10% -10% auto -10%;
    height: 60%;
    z-index: 0;
    pointer-events: none;
    background:
      linear-gradient(transparent 49%, rgba(16, 54, 122, .08) 50% 51%, transparent 52%),
      linear-gradient(90deg, transparent 49%, rgba(16, 54, 122, .08) 50% 51%, transparent 52%);
    background-size: 46px 46px;
    mask: radial-gradient(90% 80% at 50% 0%, #000 40%, transparent 100%);
    animation: nv-pan 18s linear infinite;
    opacity: .6;
  }

  .nv-grid {
    gap: 0 !important;
  }


  @keyframes nv-pan {
    to {
      transform: translateX(-10%);
    }
  }

  .nv-wrap {
    width: min(980px, 100%);
    position: relative;
    z-index: 1;
  }

  .nv-card {
    background: var(--nv-card);
    border: 1.5px solid var(--nv-line);
    border-radius: calc(var(--nv-r) + 2px);
    box-shadow: var(--nv-shadow);
    overflow: hidden;
  }

  .nv-head {
    padding: 18px clamp(18px, 3vw, 28px);
    background: linear-gradient(90deg, var(--nv-blue), var(--nv-blue-2), var(--nv-cyan));
    color: #fff;
    position: relative;
  }

  .nv-head h1 {
    margin: 0;
    font-weight: 900;
    letter-spacing: .2px;
    font-size: clamp(1.2rem, 1rem + 1.2vw, 1.8rem);
  }

  .nv-head p {
    margin: 6px 0 0;
    opacity: .92;
  }

  .nv-progress {
    height: 6px;
    background: #eaf2ff;
    position: relative;
    overflow: hidden;
  }

  .nv-progress__bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--nv-blue), var(--nv-cyan));
    transition: width .25s ease;
  }

  .nv-body {
    padding: clamp(18px, 3vw, 28px);
  }

  .nv-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(12, 1fr);
  }

  .col-6 {
    grid-column: span 6;
  }

  .col-12 {
    grid-column: span 12;
  }

  @media (max-width: 780px) {
    .col-6 {
      grid-column: span 12;
    }
  }

  .nv-field {
    position: relative;
  }

  .nv-input,
  .nv-select,
  .nv-textarea {
    width: 100%;
    border: 1.5px solid var(--nv-line);
    border-radius: 14px;
    background: linear-gradient(180deg, #FFFFFF, #f6f9ff);
    padding: 14px 42px 14px 44px;
    color: var(--nv-ink);
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
    font-size: 15px;
  }

  .nv-input::placeholder,
  .nv-textarea::placeholder {
    color: transparent;
  }

  .nv-textarea {
    min-height: 110px;
    resize: vertical;
    padding-left: 44px;
  }

  .nv-select {
    appearance: none;
    -webkit-appearance: none;
    background-image:
      linear-gradient(180deg, #FFFFFF, #f6f9ff),
      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%235b6c88" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"/></svg>');
    background-repeat: no-repeat, no-repeat;
    background-position: 0 0, right 14px center;
    background-size: auto, 14px;
    padding-right: 40px;
  }

  .nv-field:focus-within :is(.nv-input, .nv-select, .nv-textarea) {
    border-color: #cfe0ff;
    box-shadow: 0 0 0 3px rgba(16, 54, 122, .18);
    background: #FFFFFF;
  }

  .nv-label {
    position: absolute;
    left: 44px;
    top: 12px;
    pointer-events: none;
    color: var(--nv-muted);
    transition: transform .15s ease, font-size .15s ease, top .15s ease, color .15s ease;
    background: transparent;
    padding: 0 .25rem;
  }

  .nv-input:focus+.nv-label,
  .nv-input:not(:placeholder-shown)+.nv-label,
  .nv-textarea:focus+.nv-label,
  .nv-textarea:not(:placeholder-shown)+.nv-label,
  .nv-select:focus+.nv-label,
  .nv-select:not([value=""])+.nv-label {
    top: -8px;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--nv-blue);
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 0 0 4px #FFFFFF inset;
  }

  .nv-ico {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #10367A;
    opacity: .9;
  }

  .nv-ico--top {
    top: 18px;
    transform: none;
  }

  .nv-choices {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .nv-radio {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--nv-line);
    border-radius: 999px;
    padding: 8px 12px;
    background: #FFFFFF;
    cursor: pointer;
    user-select: none;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
  }

  .nv-radio input {
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #8fb0ff;
    display: grid;
    place-items: center;
  }

  .nv-radio input::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10367A;
    transform: scale(0);
    transition: transform .15s ease;
  }

  .nv-radio input:checked::after {
    transform: scale(1);
  }

  .nv-radio:hover {
    border-color: #cfe0ff;
    box-shadow: 0 0 0 3px rgba(79, 142, 252, .18);
  }

  .nv-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .95rem;
    color: var(--nv-muted);
  }

  .nv-consent input {
    margin-top: .25rem;
    width: 18px;
    height: 18px;
  }

  .nv-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    margin-top: 8px;
  }

  .nv-note {
    color: var(--nv-muted);
    font-size: .92rem;
  }

  .nv-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    border: none;
    cursor: pointer;
    padding: .95rem 1.2rem;
    border-radius: 14px;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(90deg, var(--nv-blue), var(--nv-blue-2));
    box-shadow: 0 14px 28px rgba(16, 54, 122, .22);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  }

  .nv-submit:hover {
    transform: translateY(-1px);
    filter: saturate(1.06);
    box-shadow: var(--nv-shadow);
  }

  .nv-submit::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: conic-gradient(from 0deg, transparent 0 75%, rgba(255, 255, 255, .8) 80% 85%, transparent 90% 100%);
    animation: shine 2.8s linear infinite;
    opacity: .7;
    pointer-events: none;
  }

  @keyframes shine {
    to {
      transform: rotate(1turn);
    }
  }

  .nv-toast {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 9999;
    background: #0f1d38;
    color: #eaf2ff;
    border: 1px solid #1f3568;
    border-radius: 14px;
    box-shadow: 0 14px 40px rgba(15, 29, 56, .35);
    padding: 12px 14px;
    display: none;
    align-items: center;
    gap: 10px;
  }

  .nv-toast.show {
    display: flex;
  }

  .nova-form :is(a, button, input, select, textarea) {
    outline: none;
  }

  .nova-form :is(a, button, input, select, textarea):focus-visible {
    outline: 2px solid #8fb0ff;
    outline-offset: 3px;
    border-radius: 10px;
  }

  @media (prefers-reduced-motion: reduce) {
    .nv-lines {
      display: none;
      animation: none;
    }

    .nv-submit::after {
      animation: none;
    }
  }

  @media (max-width: 780px) {
    .nova-form {
      padding: 0 !important;
    }

    .nv-wrap {
      width: 100% !important;
    }
  }







.nv-grid{ gap:22px !important; }
@media (max-width:720px){ .nv-grid{ gap:18px !important; }}

.nv-field{ position:relative; }


.nv-input, .nv-select, .nv-textarea{
  font-size:16px; line-height:1.4; color:#000000;
  padding:20px 14px 12px;                 
  background:#FFFFFF;                          
}


.nv-ico--top{ top:14px; left:12px; }       
.nv-field:has(.nv-ico--top) .nv-input,
.nv-field:has(.nv-ico--top) .nv-select,
.nv-field:has(.nv-ico--top) .nv-textarea{ padding-left:44px; }
.nv-field:has(.nv-ico--top) .nv-label{ left:44px; }


.nv-label{
  position:absolute; left:14px; top:14px;
  padding:0 6px; background:#FFFFFF; z-index:1;
  color:#10367A; border-radius:8px; line-height:1;
  pointer-events:none; transition:all .18s ease;
}

.nv-field:has(.nv-input:focus)        .nv-label,
.nv-field:has(.nv-input:not(:placeholder-shown)) .nv-label,
.nv-field:has(.nv-select:focus)       .nv-label,
.nv-field:has(.nv-select:not([value=""])) .nv-label,
.nv-field:has(.nv-textarea:focus)     .nv-label,
.nv-field:has(.nv-textarea:not(:placeholder-shown)) .nv-label,
.nv-field.is-filled                   .nv-label{
  top:-8px; transform:translateY(-50%);
  font-size:12px; color:#10367A;
  box-shadow:0 0 0 6px #FFFFFF;          
}


.nv-choices{ margin-top:6px; }
.nv-choices .chip{ min-height:44px; }


input.nv-input:-webkit-autofill,
input.nv-input:-webkit-autofill:hover,
input.nv-input:-webkit-autofill:focus{
  -webkit-text-fill-color:#000000;
  -webkit-box-shadow:0 0 0 1000px #FFFFFF inset !important;
          box-shadow:0 0 0 1000px #FFFFFF inset !important;
}

@media (max-width:720px){
  .nv-row{ grid-template-columns:1fr !important; }
}