@import "https://fonts.bunny.net/css?family=rethink-sans:600,700";

html.nm2-active,
html.nm2-active body {
    background: #ebf2f5
}

.nm2-page {
    --nm2-ink: #111;
    --nm2-teal: #009193;
    --nm2-neutral60: #738082;
    --nm2-ui40: #9ea8aa;
    --nm2-neutral20: #c9cfd1;
    --nm2-bg: #ebf2f5;
    min-height: 100svh;
    color: var(--nm2-ink);
    font-family: Inter, sans-serif
}

.nm2-container {
    width: min(1536px, 100% - 48px);
    margin: 0 auto;
    /*padding: clamp(56px, 8vh, 150px) 0 64px;*/
    container: nm2/inline-size
}

.nm2-page--embed {
    min-height: 0
}

.nm2-page--embed .nm2-container {
    width: 100%;
    max-width: 100%;
    /*padding: 32px*/
}

.nm2-headline {
    letter-spacing: -.3px;
    color: var(--nm2-ink);
    margin: 0 0 80px;
    font-family: Rethink Sans, Inter, sans-serif;
    font-size: 72px;
    font-weight: 600;
    line-height: 1.1
}

.nm2-form {
    margin: 0
}

.nm2-progress {
    border-bottom: 1px solid var(--nm2-ui40);
    gap: 24px;
    margin-bottom: 40px;
    padding-bottom: 32px;
    display: flex
}

.nm2-progress__seg {
    flex-direction: column;
    flex: 1 0 0;
    gap: 16px;
    min-width: 0;
    display: flex
}

.nm2-progress__label {
    color: var(--nm2-neutral60);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5
}

.nm2-progress__bar {
    background: #fff;
    border-radius: 999px;
    height: 10px
}

.nm2-progress__seg.is-active .nm2-progress__label {
    color: var(--nm2-ink)
}

.nm2-progress__seg.is-active .nm2-progress__bar {
    background: var(--nm2-teal)
}

.nm2-step {
    flex-direction: column;
    gap: 32px;
    display: flex
}

.nm2-step[hidden] {
    display: none
}

.nm2-intro {
    color: var(--nm2-ink);
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5
}

.nm2-cards {
    align-items: stretch;
    gap: 24px;
    display: flex
}

.nm2-card {
    background: #fff;
    border: 0;
    border-radius: 24px;
    flex-direction: column;
    flex: 1 0 0;
    gap: 24px;
    min-width: 0;
    margin: 0;
    padding: 24px;
    display: flex
}

.nm2-card__title {
    color: var(--nm2-ink);
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5
}

.nm2-choices {
    flex-direction: column;
    gap: 16px;
    display: flex
}

.nm2-choice {
    cursor: pointer;
    align-items: center;
    gap: 11px;
    display: flex
}

.nm2-radio {
    appearance: none;
    border: 1px solid var(--nm2-ui40);
    cursor: pointer;
    background: #fff;
    border-radius: 999px;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin: 0;
    position: relative
}

.nm2-radio:checked {
    border-color: var(--nm2-teal)
}

.nm2-radio:checked:after {
    content: "";
    background: var(--nm2-teal);
    border-radius: 50%;
    position: absolute;
    inset: 4px
}

.nm2-choice__label {
    letter-spacing: .5px;
    color: var(--nm2-ink);
    font-size: 14px;
    font-weight: 600;
    line-height: 1
}

.nm2-input {
    box-sizing: border-box;
    width: 100%;
    color: var(--nm2-ink);
    border: 1px solid var(--nm2-neutral20);
    background: #fff;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5
}

.nm2-input::placeholder {
    color: var(--nm2-neutral60);
    opacity: 1
}

.nm2-input:focus {
    border-color: var(--nm2-teal);
    outline: none
}

.nm2-input--error {
    border-color: #d23b3b
}

.nm2-other {
    margin-top: 4px
}

.nm2-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    display: grid
}

.nm2-field {
    flex-direction: column;
    gap: 8px;
    display: flex
}

.nm2-field__label {
    color: var(--nm2-ink);
    gap: 4px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    display: flex
}

.nm2-required {
    color: var(--nm2-ink)
}

.nm2-error {
    color: #d23b3b;
    font-size: 14px
}

.nm2-consent-block {
    flex-direction: column;
    gap: 16px;
    display: flex
}

.nm2-consent {
    cursor: pointer;
    align-items: center;
    gap: 16px;
    display: flex
}

.nm2-checkbox {
    appearance: none;
    border: 1.5px solid var(--nm2-ui40);
    cursor: pointer;
    background: #fff;
    border-radius: 8px;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    margin: 0;
    position: relative
}

.nm2-checkbox:checked {
    background: var(--nm2-teal);
    border-color: var(--nm2-teal)
}

.nm2-checkbox:checked:after {
    content: "";
    border: 2.5px solid #fff;
    border-width: 0 2.5px 2.5px 0;
    width: 7px;
    height: 13px;
    position: absolute;
    top: 6px;
    left: 11px;
    transform: rotate(45deg)
}

.nm2-consent__label {
    color: var(--nm2-ink);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5
}

.nm2-consent__label a {
    color: var(--nm2-teal);
    text-decoration: underline
}

.nm2-actions {
    gap: 24px;
    display: flex
}

.nm2-btn {
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;
    border: 0;
    border-radius: 40px;
    justify-content: center;
    align-items: center;
    padding: 30px 40px;
    font-family: inherit;
    font-size: 18px;
    font-weight: 600;
    line-height: .8;
    text-decoration: none;
    transition: background .2s, color .2s;
    display: inline-flex
}

.nm2-btn--primary {
    background: var(--nm2-teal);
    color: #fff
}

.nm2-btn--primary:hover:not(:disabled) {
    background: #007e80
}

.nm2-btn--primary:disabled {
    background: var(--nm2-neutral60);
    cursor: not-allowed
}

.nm2-btn--ghost {
    color: var(--nm2-ink);
    background: #fff
}

.nm2-btn--ghost:hover {
    background: var(--nm2-ink);
    color: #fff
}

.nm2-btn.is-processing {
    color: #0000;
    position: relative
}

.nm2-btn.is-processing:after {
    content: "";
    border: 2px solid #ffffff80;
    border-top-color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    margin: -9px 0 0 -9px;
    animation: .8s linear infinite nm2-spin;
    position: absolute;
    top: 50%;
    left: 50%
}

@keyframes nm2-spin {
    to {
        transform: rotate(360deg)
    }
}

.nm2-form-error {
    border: 1px solid var(--nm2-teal);
    color: var(--nm2-ink);
    background: #00919314;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px
}

.nm2-thankyou {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    display: flex
}

.nm2-thankyou__text {
    color: var(--nm2-ink);
    margin: 0;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4
}

@container nm2 (width<=900px) {
    .nm2-cards {
        flex-direction: column
    }
}

@container nm2 (width<=600px) {
    .nm2-fields {
        grid-template-columns: 1fr
    }

    .nm2-actions {
        flex-direction: column
    }

    .nm2-btn {
        width: 100%
    }
}

/*$vite$:1*/