/*
 * Formidable / form-specific overrides
 * Add custom form styles here.
 */
.propcycle-banner__special-content--form .with_frm_style {
    --form-width: 100%;
    --form-align: left;
    --direction: ltr;
    --fieldset: 0px;
    --fieldset-color: #000000;
    --fieldset-padding: 0px 0px 15px 0px;
    --fieldset-bg-color: transparent;
    --title-size: 40px;
    --title-color: var(--color-heading);
    --title-margin-top: 10px;
    --title-margin-bottom: 60px;
    --form-desc-size: 14px;
    --form-desc-color: #98A2B3;
    --form-desc-margin-top: 10px;
    --form-desc-margin-bottom: 25px;
    --form-desc-padding: 0px;
    --font-size: 15px;
    --label-color: var(--color-text);
    --weight: 600;
    --position: none;
    --align: left;
    --width: 150px;
    --required-color: #F04438;
    --required-weight: bold;
    --label-padding: 0px 0px 5px 0px;
    --description-font-size: 12px;
    --description-color: #667085;
    --description-weight: normal;
    --description-style: normal;
    --description-align: left;
    --description-margin: 0px;
    --field-font-size: 16px;
    --field-height: 45px;
    --line-height: 36px;
    --field-width: 100%;
    --auto-width: 100%;
    --field-pad: 16px 14px;
    --field-margin: 12px;
    --field-weight: normal;
    --text-color: var(--color-text);
    --border-color: #D0D5DD;
    --field-border-width: 1px;
    --field-border-style: solid;
    --bg-color: #ffffff;
    --bg-color-active: #ffffff;
    --border-color-active: #4199FD;
    --text-color-error: #444444;
    --bg-color-error: #ffffff;
    --border-color-error: #F04438;
    --border-width-error: 1px;
    --border-style-error: solid;
    --bg-color-disabled: #F9FAFB;
    --border-color-disabled: #D0D5DD;
    --text-color-disabled: #667085;
    --radio-align: block;
    --check-align: block;
    --check-font-size: 14px;
    --check-label-color: #1D2939;
    --check-weight: normal;
    --section-font-size: 18px;
    --section-color: #344054;
    --section-weight: bold;
    --section-pad: 32px 0px 3px 0px;
    --section-mar-top: 30px;
    --section-mar-bottom: 30px;
    --section-bg-color: transparent;
    --section-border-color: #EAECF0;
    --section-border-width: 1px;
    --section-border-style: solid;
    --section-border-loc: -top;
    --collapse-pos: after;
    --repeat-icon-color: #ffffff;
    --submit-font-size: 14px;
    --submit-width: auto;
    --submit-height: auto;
    --submit-bg-color: #4199FD;
    --submit-border-color: #4199FD;
    --submit-border-width: 1px;
    --submit-text-color: #ffffff;
    --submit-weight: normal;
    --submit-border-radius: 8px;
    --submit-margin: 10px;
    --submit-padding: 8px 16px;
    --submit-shadow-color: #eeeeee;
    --submit-hover-bg-color: #3680D3;
    --submit-hover-color: #ffffff;
    --submit-hover-border-color: #3680D3;
    --submit-active-bg-color: #3680D3;
    --submit-active-color: #ffffff;
    --submit-active-border-color: #3680D3;
    --border-radius: 8px;
    --error-bg: #FEE4E2;
    --error-border: #F5B8AA;
    --error-text: #F04438;
    --error-font-size: 14px;
    --success-bg-color: #DFF0D8;
    --success-border-color: #D6E9C6;
    --success-text-color: #468847;
    --success-font-size: 14px;
    --progress-bg-color: #EAECF0;
    --progress-color: #1D2939;
    --progress-active-bg-color: #4199FD;
    --progress-active-color: #ffffff;
    --progress-border-color: #EAECF0;
    --progress-border-size: 1px;
    --progress-size: 30px;
    --base-font-size: 15px;
    --box-shadow: 0 1px 2px 0 rgba(18, 18, 23, 0.05);
}

.frm_style_formidable-style.with_frm_style input[type=submit], .frm_style_formidable-style.with_frm_style .frm_submit input[type=button], .frm_style_formidable-style.with_frm_style .frm_submit button, .frm_form_submit_style {
 --propcycle-button-icon-stroke-width: 2.5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    font-family: var(--font-family-heading);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    text-align: center;
    min-height: 56px;
 background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

.frm_style_formidable-style.with_frm_style input[type=submit]:hover, .frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:hover, .frm_style_formidable-style.with_frm_style .frm_submit button:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #ffffff;
    transform: translateY(-2px);
}