.fmv-form-shell {
    max-width: 1200px;
    margin: 0 auto;
}

.fmv-form-title {
    margin: 0 0 14px;
    font-size: 2.4rem;
    line-height: 1.15;
}

.fmv-form-intro {
    margin: 0 0 28px;
    max-width: 980px;
    color: #4c5465;
    font-size: 1.05rem;
}

.fmv-application-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.fmv-form-grid {
    display: grid;
    gap: 22px 28px;
}

.fmv-form-grid--one { grid-template-columns: 1fr; }
.fmv-form-grid--two { grid-template-columns: 1fr 1fr; }
.fmv-form-grid--three { grid-template-columns: 1fr 1fr 1fr; }
.fmv-form-grid--three-sm { grid-template-columns: 160px 1fr 1fr; }
.fmv-form-grid--two-short { grid-template-columns: 300px 1fr; }

.fmv-field label {
    display: block;
    margin: 0 0 8px;
    font-weight: 700;
    font-size: 1rem;
    color: #1e2532;
}

.fmv-required {
    color: #db4356;
}

.fmv-field input,
.fmv-field select,
.fmv-field textarea {
    width: 100%;
    height: 68px;
    padding: 16px 18px;
    border: 2px solid #dbe3ef;
    border-radius: 16px;
    box-sizing: border-box;
    background: #fff;
    font-size: 1rem;
    color: #1e2532;
    box-shadow: none;
}

.fmv-field textarea {
    min-height: 120px;
    height: auto;
}

.fmv-field input:focus,
.fmv-field select:focus,
.fmv-field textarea:focus {
    outline: none;
    border-color: #8fb1ff;
}

.fmv-field-help {
    margin-top: 8px;
    color: #667085;
    font-size: .96rem;
}

.fmv-summary-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 32px;
    color: #1e2532;
}

.fmv-consents {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fmv-checkline {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #2e3646;
    line-height: 1.45;
}

.fmv-checkline input {
    width: 22px;
    height: 22px;
    margin: 2px 0 0;
    flex: 0 0 22px;
}

.fmv-consent-links {
    margin: -2px 0 2px 34px;
    color: #52607b;
}

.fmv-consent-links a {
    color: #52607b;
    text-decoration: underline;
}

.fmv-submit-button {
    width: auto;
    min-width: 280px;
    height: 58px;
    padding: 0 22px;
    border: 0;
    border-radius: 14px;
    background: #8aa7ff;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    align-self: flex-start;
}

.fmv-submit-button:hover {
    background: #7597fa;
}

.fmv-form-notice {
    max-width: 1200px;
    margin: 0 auto 22px;
    padding: 16px 18px;
    border-radius: 12px;
}

.fmv-form-notice--warning {
    background: #fff8e5;
    border: 1px solid #e0b200;
}

.fmv-form-notice--success {
    background: #eef8ee;
    border: 1px solid #3c8c3c;
}

.fmv-form-notice--error {
    background: #fff1f1;
    border: 1px solid #c43d3d;
}

.fmv-form-notice ul {
    margin: 10px 0 0 18px;
}

@media (max-width: 900px) {
    .fmv-form-grid--two,
    .fmv-form-grid--three,
    .fmv-form-grid--three-sm,
    .fmv-form-grid--two-short {
        grid-template-columns: 1fr;
    }

    .fmv-submit-button {
        width: 100%;
    }
}

.fmv-checkline span {
    display: block !important;
    flex: 1 1 auto !important;
    width: auto !important;
    color: #2e3646 !important;
    font-size: 1rem !important;
    line-height: 1.45 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.fmv-checkline input[type="checkbox"] {
    appearance: auto !important;
    -webkit-appearance: checkbox !important;
    display: inline-block !important;
}


.fmv-checkline {
    display: grid !important;
    grid-template-columns: 24px minmax(0, 1fr) !important;
    align-items: start !important;
    column-gap: 12px !important;
    width: 100% !important;
}

.fmv-checkline input[type="checkbox"] {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
    margin: 2px 0 0 !important;
    padding: 0 !important;
}

.fmv-checktext {
    display: block !important;
    width: auto !important;
    max-width: none !important;
    white-space: normal !important;
    overflow: visible !important;
    text-indent: 0 !important;
    clip: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #2e3646 !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
}

.fmv-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
