:root,
.nw-form-shell {
    color-scheme: light;
    --nw-page: #f3f7fb;
    --nw-panel: #ffffff;
    --nw-panel-subtle: #f7faff;
    --nw-text: #132238;
    --nw-muted: #5b697c;
    --nw-border: #d6e0ec;
    --nw-border-strong: #98aabd;
    --nw-accent: #1474b8;
    --nw-accent-strong: #0f5d94;
    --nw-accent-soft: #e8f3fb;
    --nw-blue: #0f6dac;
    --nw-blue-soft: #eaf3fb;
    --nw-warning: #946315;
    --nw-danger: #b42318;
    --nw-danger-soft: #fff0ee;
    --nw-focus: #2f7dd1;
    --nw-tooltip-bg: #132238;
    --nw-tooltip-text: #ffffff;
    --nw-shadow: 0 18px 44px rgb(19 44 72 / 0.10);
    --nw-input-shadow: 0 1px 2px rgb(15 45 74 / 0.05);
    font-family: "Segoe UI", Arial, sans-serif;
}

html[data-theme="dark"],
html[data-theme="dark"] .nw-form-shell,
.nw-form-shell[data-theme="dark"] {
    color-scheme: dark;
    --nw-page: #07111f;
    --nw-panel: #0d1a2a;
    --nw-panel-subtle: #132338;
    --nw-text: #eef5ff;
    --nw-muted: #a6b6c9;
    --nw-border: #2a3c52;
    --nw-border-strong: #4a6078;
    --nw-accent: #3e9ed8;
    --nw-accent-strong: #65b8e8;
    --nw-accent-soft: #132f47;
    --nw-blue: #75c3f0;
    --nw-blue-soft: #142b43;
    --nw-warning: #e7bd67;
    --nw-danger: #ff8e86;
    --nw-danger-soft: #3a201f;
    --nw-focus: #79b8f2;
    --nw-tooltip-bg: #050f1c;
    --nw-tooltip-text: #eef5ff;
    --nw-shadow: 0 18px 48px rgb(2 7 13 / 0.38);
    --nw-input-shadow: none;
}

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

.nw-public-form-page {
    margin: 0;
    min-width: 0;
    background: var(--nw-page);
    color: var(--nw-text);
}

html.is-embedded,
html.is-embedded .nw-public-form-page {
    background: transparent;
}

.nw-public-form-page {
    padding: 24px;
    font-size: 16px;
    line-height: 1.5;
}

html.is-embedded .nw-public-form-page {
    padding: 0;
}

.nw-form-shell button,
.nw-form-shell input,
.nw-form-shell select,
.nw-form-shell textarea {
    font: inherit;
}

.nw-form-shell button,
.nw-form-shell label,
.nw-form-shell select {
    -webkit-tap-highlight-color: transparent;
}

.nw-form-shell {
    position: relative;
    width: min(100%, 920px);
    min-width: 0;
    margin: 0 auto;
    border: 1px solid var(--nw-border);
    border-radius: 8px;
    background: var(--nw-panel);
    box-shadow: var(--nw-shadow);
    overflow: hidden;
}

.nw-form-shell-native {
    width: 100%;
    box-shadow: 0 8px 28px rgb(19 44 72 / 0.08);
}

.nw-review-notice {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 14px 22px 0;
    border: 1px solid var(--nw-border);
    border-radius: 8px;
    padding: 9px 11px;
    background: var(--nw-blue-soft);
    color: var(--nw-muted);
    font-size: 13px;
}

.nw-review-notice svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    color: var(--nw-blue);
}

.nw-form-header {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--nw-border);
    padding: 14px 22px;
    background: var(--nw-panel);
}

.nw-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.nw-logo {
    display: block;
    width: auto;
    max-width: min(220px, 60vw);
    height: 38px;
    object-fit: contain;
    object-position: left center;
}

.nw-logo-dark,
html[data-theme="dark"] .nw-logo-light,
.nw-form-shell[data-theme="dark"] .nw-logo-light {
    display: none;
}

html[data-theme="dark"] .nw-logo-dark,
.nw-form-shell[data-theme="dark"] .nw-logo-dark {
    display: block;
}

.nw-theme-button {
    display: inline-grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border: 1px solid var(--nw-border);
    border-radius: 8px;
    background: var(--nw-panel-subtle);
    color: var(--nw-text);
    cursor: pointer;
}

.nw-theme-button:hover {
    border-color: var(--nw-border-strong);
}

.nw-theme-sun,
.nw-theme-moon {
    font-size: 21px;
    line-height: 1;
}

.nw-theme-moon,
html[data-theme="dark"] .nw-theme-sun,
.nw-form-shell[data-theme="dark"] .nw-theme-sun {
    display: none;
}

html[data-theme="dark"] .nw-theme-moon,
.nw-form-shell[data-theme="dark"] .nw-theme-moon {
    display: inline;
}

.nw-progress {
    border-bottom: 1px solid var(--nw-border);
    padding: 14px 22px 16px;
    background: var(--nw-panel-subtle);
}

.nw-progress-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    color: var(--nw-muted);
    font-size: 13px;
    font-weight: 600;
}

.nw-progress-track {
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background: var(--nw-border);
    overflow: hidden;
}

.nw-progress-track span {
    display: block;
    width: 33.333%;
    height: 100%;
    border-radius: inherit;
    background: var(--nw-accent);
    transition: width 180ms ease;
}

.nw-public-form {
    min-width: 0;
}

.nw-step {
    display: grid;
    gap: 24px;
    min-width: 0;
    padding: 30px 32px 8px;
}

.nw-step[hidden],
.nw-branch[hidden],
.nw-form-shell [hidden] {
    display: none !important;
}

.nw-step-heading {
    display: grid;
    gap: 7px;
}

.nw-step-heading h1,
.nw-step-heading h2,
.nw-step-heading p,
.nw-eyebrow {
    margin: 0;
    letter-spacing: 0;
}

.nw-step-heading h1,
.nw-step-heading h2 {
    max-width: 24ch;
    color: var(--nw-text);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.16;
}

.nw-step-heading p:not(.nw-eyebrow) {
    max-width: 62ch;
    color: var(--nw-muted);
    font-size: 15px;
}

.nw-eyebrow {
    color: var(--nw-accent-strong);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.nw-fieldset {
    display: grid;
    min-width: 0;
    gap: 10px;
    margin: 0;
    border: 0;
    padding: 0;
}

.nw-fieldset + .nw-fieldset {
    border-top: 1px solid var(--nw-border);
    padding-top: 22px;
}

.nw-fieldset legend {
    margin: 0;
    padding: 0;
    color: var(--nw-text);
    font-size: 15px;
    font-weight: 700;
}

.nw-legend-row {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.nw-help-button {
    display: inline-grid;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    place-items: center;
    border: 1px solid var(--nw-border);
    border-radius: 50%;
    padding: 0;
    background: var(--nw-panel-subtle);
    color: var(--nw-muted);
    cursor: help;
}

.nw-help-button:hover,
.nw-help-button:focus-visible {
    border-color: var(--nw-accent);
    color: var(--nw-accent-strong);
}

.nw-help-button:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--nw-focus) 28%, transparent);
    outline-offset: 2px;
}

.nw-help-button svg {
    width: 19px;
    height: 19px;
}

.nw-tooltip {
    position: fixed;
    z-index: 100;
    width: max-content;
    max-width: min(300px, calc(100vw - 16px));
    border: 1px solid var(--nw-border-strong);
    border-radius: 7px;
    padding: 9px 11px;
    background: var(--nw-tooltip-bg);
    color: var(--nw-tooltip-text);
    box-shadow: 0 10px 28px rgb(4 17 31 / 0.22);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
    pointer-events: none;
}

.nw-option-group {
    display: grid;
    gap: 9px;
}

.nw-option-group + .nw-option-group {
    margin-top: 8px;
}

.nw-option-group h2 {
    margin: 0;
    color: var(--nw-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.nw-field-hint,
.nw-file-list {
    margin: 0;
    color: var(--nw-muted);
    font-size: 13px;
}

.nw-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    min-width: 0;
}

fieldset.nw-choice-grid {
    margin: 0;
    border: 0;
    padding: 0;
}

.nw-choice-grid-single {
    grid-template-columns: 1fr;
}

.nw-choice {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 58px;
    grid-template-columns: 22px 34px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    border: 1px solid var(--nw-border);
    border-radius: 8px;
    padding: 12px 13px;
    background: var(--nw-panel-subtle);
    color: var(--nw-text);
    cursor: pointer;
    transition: border-color 140ms ease, background-color 140ms ease, box-shadow 140ms ease;
}

.nw-choice:not(:has(.nw-choice-icon)) {
    grid-template-columns: 22px minmax(0, 1fr);
}

.nw-choice-icon {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 7px;
    background: var(--nw-blue-soft);
    color: var(--nw-blue);
}

.nw-choice-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.7;
}

.nw-choice-icon-brand {
    border: 1px solid color-mix(in srgb, var(--nw-border) 72%, transparent);
    background: #ffffff;
}

.nw-choice-icon-brand img {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.nw-choice:has(input:checked) .nw-choice-icon-brand {
    background: #ffffff;
}

.nw-choice:has(input:checked) .nw-choice-icon {
    background: var(--nw-panel);
    color: var(--nw-accent-strong);
}

.nw-choice:hover {
    border-color: var(--nw-border-strong);
}

.nw-choice:has(input:checked) {
    border-color: var(--nw-accent);
    background: var(--nw-accent-soft);
    box-shadow: inset 3px 0 0 var(--nw-accent);
}

.nw-choice input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.nw-choice-indicator {
    position: relative;
    display: inline-grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border: 1px solid var(--nw-border-strong);
    background: var(--nw-panel);
}

.nw-choice-radio .nw-choice-indicator {
    border-radius: 50%;
}

.nw-choice-check .nw-choice-indicator {
    border-radius: 5px;
}

.nw-choice-radio input:checked + .nw-choice-indicator::after {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--nw-accent);
    content: "";
}

.nw-choice-check input:checked + .nw-choice-indicator {
    border-color: var(--nw-accent);
    background: var(--nw-accent);
}

.nw-choice-check input:checked + .nw-choice-indicator::after {
    width: 9px;
    height: 5px;
    border-bottom: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    content: "";
    transform: translateY(-1px) rotate(-45deg);
}

.nw-choice input:focus-visible + .nw-choice-indicator {
    outline: 3px solid color-mix(in srgb, var(--nw-focus) 35%, transparent);
    outline-offset: 3px;
}

.nw-choice-copy {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.nw-choice-indicator + .nw-choice-copy {
    grid-column: 2 / -1;
}

.nw-choice-copy strong {
    overflow-wrap: anywhere;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.nw-choice-copy small {
    color: var(--nw-muted);
    font-size: 12px;
    line-height: 1.4;
}

.nw-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
    min-width: 0;
}

.nw-field,
.nw-branch {
    display: grid;
    min-width: 0;
    gap: 7px;
}

.nw-branch {
    gap: 20px;
}

.nw-field-span {
    grid-column: 1 / -1;
}

.nw-field label {
    color: var(--nw-text);
    font-size: 14px;
    font-weight: 600;
}

.nw-optional {
    color: var(--nw-muted);
    font-size: 12px;
    font-weight: 400;
}

.nw-field input,
.nw-field select,
.nw-field textarea {
    display: block;
    width: 100%;
    min-width: 0;
    min-height: 46px;
    border: 1px solid var(--nw-border-strong);
    border-radius: 7px;
    padding: 10px 12px;
    background: var(--nw-panel);
    color: var(--nw-text);
    box-shadow: var(--nw-input-shadow);
    outline: none;
}

.nw-segmented-control {
    display: inline-grid;
    width: min(100%, 360px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    border: 1px solid var(--nw-border);
    border-radius: 8px;
    padding: 4px;
    background: var(--nw-panel-subtle);
}

.nw-segmented-control label {
    position: relative;
    min-width: 0;
    cursor: pointer;
}

.nw-segmented-control input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.nw-segmented-control span {
    display: flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 6px;
    color: var(--nw-muted);
    font-size: 14px;
    font-weight: 600;
}

.nw-segmented-control input:checked + span {
    border-color: var(--nw-accent);
    background: var(--nw-panel);
    color: var(--nw-accent-strong);
}

.nw-segmented-control input:focus-visible + span {
    outline: 3px solid color-mix(in srgb, var(--nw-focus) 25%, transparent);
    outline-offset: 1px;
}

.nw-field textarea {
    min-height: 118px;
    resize: vertical;
}

.nw-service-scope {
    display: grid;
    gap: 18px;
    min-width: 0;
    border-top: 1px solid var(--nw-border);
    border-bottom: 1px solid var(--nw-border);
    padding: 20px 0;
}

.nw-service-scope-header {
    display: grid;
    min-width: 0;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
}

.nw-service-scope-header p,
.nw-service-scope-header h3 {
    margin: 0;
    letter-spacing: 0;
}

.nw-service-scope-header p {
    color: var(--nw-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.nw-service-scope-header h3 {
    color: var(--nw-text);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.nw-service-role {
    border: 1px solid var(--nw-border);
    border-radius: 999px;
    padding: 5px 9px;
    background: var(--nw-panel-subtle);
    color: var(--nw-muted);
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.nw-service-role[data-role="primary"] {
    border-color: color-mix(in srgb, var(--nw-accent) 46%, var(--nw-border));
    background: var(--nw-accent-soft);
    color: var(--nw-accent-strong);
}

.nw-service-primary {
    display: grid;
    gap: 20px;
    border-left: 3px solid var(--nw-accent);
    padding-left: 16px;
}

.nw-nested-fieldset {
    margin-left: 14px;
    border-left: 3px solid var(--nw-accent);
    padding-left: 16px;
}

.nw-schedule-choice {
    margin-top: 12px;
    background: var(--nw-panel-subtle);
}

.nw-schedule-notice {
    margin: 10px 0 0;
    border-left: 3px solid var(--nw-blue);
    padding: 9px 12px;
    background: var(--nw-blue-soft);
    color: var(--nw-muted);
    font-size: 13px;
    line-height: 1.5;
}

.nw-service-secondary {
    border-left: 3px solid var(--nw-border-strong);
    padding-left: 16px;
}

.nw-service-callout {
    border-left: 3px solid var(--nw-blue);
    padding: 9px 12px;
    background: var(--nw-blue-soft);
    color: var(--nw-muted);
    font-size: 13px;
    line-height: 1.55;
}

.nw-field input[type="file"] {
    min-height: 50px;
    padding: 8px;
    color: var(--nw-muted);
}

.nw-field input[type="file"]::file-selector-button {
    min-height: 34px;
    margin-right: 10px;
    border: 1px solid var(--nw-border);
    border-radius: 6px;
    padding: 6px 10px;
    background: var(--nw-panel-subtle);
    color: var(--nw-text);
    cursor: pointer;
}

.nw-field input::placeholder,
.nw-field textarea::placeholder {
    color: color-mix(in srgb, var(--nw-muted) 78%, transparent);
}

.nw-field input:focus,
.nw-field select:focus,
.nw-field textarea:focus {
    border-color: var(--nw-focus);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--nw-focus) 20%, transparent);
}

.nw-field input[aria-invalid="true"],
.nw-field select[aria-invalid="true"],
.nw-field textarea[aria-invalid="true"],
.nw-choice-grid[aria-invalid="true"] .nw-choice {
    border-color: var(--nw-danger);
}

.nw-has-error {
    scroll-margin: 116px;
}

.nw-field.nw-has-error input,
.nw-field.nw-has-error select,
.nw-field.nw-has-error textarea,
.nw-fieldset.nw-has-error > .nw-choice-grid .nw-choice,
.nw-consent.nw-has-error {
    border-color: var(--nw-danger);
}

.nw-field.nw-has-error input:focus,
.nw-field.nw-has-error select:focus,
.nw-field.nw-has-error textarea:focus {
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--nw-danger) 20%, transparent);
}

.nw-field-error {
    margin: 0;
    color: var(--nw-danger);
    font-size: 12px;
    font-weight: 600;
}

.nw-file-list:not(:empty) {
    display: grid;
    gap: 4px;
    border-left: 3px solid var(--nw-blue);
    padding: 7px 9px;
    background: var(--nw-blue-soft);
}

.nw-consent {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    border-top: 1px solid var(--nw-border);
    padding-top: 18px;
    color: var(--nw-muted);
    font-size: 13px;
    cursor: pointer;
}

.nw-consent input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--nw-accent);
}

.nw-consent a {
    color: var(--nw-blue);
    font-weight: 600;
}

.nw-form-actions {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 24px;
    border-top: 1px solid var(--nw-border);
    padding: 16px 32px;
    background: var(--nw-panel-subtle);
}

.nw-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 7px;
    padding: 10px 17px;
    font-weight: 700;
    cursor: pointer;
}

.nw-button-primary {
    border: 1px solid var(--nw-accent);
    background: var(--nw-accent);
    color: #ffffff;
}

html[data-theme="dark"] .nw-button-primary,
.nw-form-shell[data-theme="dark"] .nw-button-primary {
    color: #ffffff;
}

.nw-button-primary:hover {
    border-color: var(--nw-accent-strong);
    background: var(--nw-accent-strong);
}

.nw-button-secondary {
    border: 1px solid var(--nw-border-strong);
    background: var(--nw-panel);
    color: var(--nw-text);
}

.nw-button:focus-visible,
.nw-theme-button:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--nw-focus) 32%, transparent);
    outline-offset: 2px;
}

.nw-button:disabled {
    opacity: 0.62;
    cursor: wait;
}

.nw-error-summary {
    margin: 18px 32px 0;
    border: 1px solid var(--nw-danger);
    border-left-width: 4px;
    border-radius: 7px;
    padding: 11px 13px;
    background: var(--nw-danger-soft);
    color: var(--nw-danger);
    font-size: 13px;
    font-weight: 600;
}

.nw-submitting {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    background: color-mix(in srgb, var(--nw-panel) 88%, transparent);
    color: var(--nw-text);
    font-weight: 600;
    backdrop-filter: blur(2px);
}

.nw-spinner {
    width: 26px;
    height: 26px;
    border: 3px solid var(--nw-border);
    border-top-color: var(--nw-accent);
    border-radius: 50%;
    animation: nw-form-spin 700ms linear infinite;
}

.nw-success {
    display: grid;
    min-height: 420px;
    place-items: center;
    padding: 44px 32px;
    text-align: center;
}

.nw-success-inner {
    display: grid;
    max-width: 540px;
    justify-items: center;
    gap: 14px;
}

.nw-success-mark {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    background: var(--nw-accent-soft);
    color: var(--nw-accent-strong);
    font-size: 30px;
    font-weight: 700;
}

.nw-success h1,
.nw-success p {
    margin: 0;
    letter-spacing: 0;
}

.nw-success h1 {
    font-size: 30px;
    font-weight: 700;
}

.nw-success p {
    color: var(--nw-muted);
}

.nw-success-reference {
    border: 1px solid var(--nw-border);
    border-radius: 7px;
    padding: 8px 11px;
    background: var(--nw-panel-subtle);
    color: var(--nw-text) !important;
    font-size: 13px;
    font-weight: 600;
}

.nw-success-redirect {
    font-size: 13px;
}

.nw-success-redirect a {
    color: var(--nw-blue);
    font-weight: 600;
}

.nw-honeypot,
.nw-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@keyframes nw-form-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 680px) {
    .nw-public-form-page {
        padding: 8px;
    }

    .nw-form-shell {
        overflow: visible;
    }

    .nw-form-header {
        min-height: 60px;
        padding: 8px 11px;
    }

    .nw-logo {
        height: 31px;
        max-width: min(190px, 66vw);
    }

    .nw-theme-button {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .nw-progress {
        padding: 9px 11px 11px;
    }

    .nw-review-notice {
        align-items: flex-start;
        margin: 10px 11px 0;
        padding: 8px 9px;
    }

    .nw-step {
        gap: 18px;
        padding: 18px 12px 2px;
    }

    .nw-step-heading {
        scroll-margin-top: 90px;
    }

    .nw-step-heading h1,
    .nw-step-heading h2 {
        font-size: 25px;
    }

    .nw-step-heading p:not(.nw-eyebrow) {
        font-size: 14px;
    }

    .nw-choice-grid,
    .nw-field-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .nw-nested-fieldset {
        margin-left: 6px;
        padding-left: 10px;
    }

    .nw-service-scope-header {
        grid-template-columns: 34px minmax(0, 1fr);
    }

    .nw-service-scope-header .nw-choice-icon {
        width: 34px;
        height: 34px;
    }

    .nw-service-role {
        width: max-content;
        grid-column: 2;
        white-space: normal;
    }

    .nw-service-primary,
    .nw-service-secondary {
        padding-left: 11px;
    }

    .nw-choice {
        min-height: 54px;
        grid-template-columns: 20px 30px minmax(0, 1fr);
        gap: 9px;
        padding: 10px 11px;
    }

    .nw-choice-icon {
        width: 30px;
        height: 30px;
    }

    .nw-choice-icon svg {
        width: 18px;
        height: 18px;
    }

    .nw-choice-icon-brand img {
        width: 21px;
        height: 21px;
    }

    .nw-field-grid {
        gap: 13px;
    }

    .nw-field-span {
        grid-column: auto;
    }

    .nw-form-actions {
        position: sticky;
        z-index: 8;
        bottom: 0;
        min-height: 70px;
        margin-top: 18px;
        padding: 11px 12px calc(11px + env(safe-area-inset-bottom));
        box-shadow: 0 -8px 20px rgb(19 44 72 / 0.08);
    }

    .nw-button {
        min-width: 0;
        flex: 1 1 0;
        padding: 9px 11px;
    }

    .nw-button[data-back][hidden] + .nw-button {
        flex-basis: 100%;
    }

    .nw-error-summary {
        margin: 12px 12px 0;
    }

    .nw-consent {
        padding-top: 14px;
    }

    .nw-success {
        min-height: 360px;
        padding: 32px 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nw-form-shell,
    .nw-form-shell *,
    .nw-form-shell *::before,
    .nw-form-shell *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
