


.va-honeypot-container {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    pointer-events: none !important;
    opacity: 0 !important;
    clip-path: inset(50%) !important;
}

:where(.va-interest-form) {
    --va-interest-gap: 0.75rem;
    --va-interest-control-height: 2.75rem;
    --va-interest-inline-max: 42rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: min(100%, var(--va-interest-inline-max));
    gap: var(--va-interest-gap);
}

:where(.va-interest-form__label) {
    display: block;
    margin: 0;
    font-weight: 600;
}

:where(.va-interest-form__controls) {

    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    gap: 0.625rem;
    width: 100%;
}

.va-interest-form__input {
    min-width: 12rem;
    min-height: var(--va-interest-control-height);
    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 0.625rem 0.875rem;
    box-sizing: border-box;

    border-radius: 0.625rem;
}

:where(.va-interest-form__button) {
    min-height: var(--va-interest-control-height);
    min-width: 10rem;
    max-width: 100%;
    padding: 0.625rem 1rem;
    box-sizing: border-box;
    align-self: stretch;
}


:where(.va-interest-form__status) {
    margin: 0;
    width: 100%;

    --va-interest-status-font-family: inherit;
    --va-interest-status-font-size: inherit;
    --va-interest-status-font-weight: 600;
    --va-interest-status-processing-color: #a16207;
    --va-interest-status-success-color: #16a34a;
    --va-interest-status-error-color: #dc2626;
}

:where(.va-interest-form__note) {
    margin: 0;
}


:where(form[data-va-interest-form="true"]) .va-interest-form__status-message {
    margin-top: 0;
    font-family: var(--va-interest-status-font-family, inherit);
    font-size: var(--va-interest-status-font-size, inherit);
    font-weight: var(--va-interest-status-font-weight, 600);
}

:where(form[data-va-interest-form="true"]) .va-interest-form__status--success,
:where(form[data-va-interest-form="true"]) .message.success {
    color: var(--va-interest-status-success-color, #16a34a);
}

:where(form[data-va-interest-form="true"]) .va-interest-form__status--error,
:where(form[data-va-interest-form="true"]) .message.error {
    color: var(--va-interest-status-error-color, #dc2626);
}

:where(form[data-va-interest-form="true"]) .va-interest-form__status--processing,
:where(form[data-va-interest-form="true"]) .message.processing {
    color: var(--va-interest-status-processing-color, #a16207);
}


:where(form[data-va-interest-form="true"]) [data-interest-status] {
    position: static !important;
    display: block;
    width: 100%;
    clear: both;
    flex-basis: 100%;
    z-index: auto;
}


@media (max-width: 520px) {
    :where(.va-interest-form__controls) {
        grid-template-columns: minmax(0, 1fr);
    }

    :where(.va-interest-form__button) {
        width: 100%;
    }
}
