/* =========================================================
   Financing Pre-Approval  —  /financing-preapproval
   The lender's QuickQualify form (700dealer, a fixed-height
   third-party iframe with no resize messaging) presented as
   a white sheet on the shared .pg-* layer. The two size
   steps are hand-tuned to the form's own internal
   breakpoints — carried over from the legacy f051022.css —
   so don't let the width drift between them or the form
   clips mid-reflow.
   ========================================================= */

.fin-app {
    width: min(900px, 100%);
    height: 1465px;
    margin-inline: auto;
    border: 1px solid var(--theme-border, rgba(255, 255, 255, 0.09));
    border-radius: var(--theme-radius-md, 1rem);
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.44);
}

.fin-app iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

@media only screen and (max-width: 1000px) {
    .fin-app {
        width: min(360px, 100%);
        height: 2325px;
    }
}
