/* SECTION FORM */

section.page-form .content {
    min-height: 85dvh;
    border-right: var(--frame-width) solid var(--white);
}

section.page-form .content .container {
    min-height: 100%;
}

section.page-form .form {
    background-color: var(--grey-light);
}

@media
(width <= 1024px) and (orientation:portrait),
(width <= 990px) {
    
    section.page-form > .row {
        flex-direction: column;
        justify-content: center;
        gap:calc(var(--the-gap) * 2);
        position: relative;
        min-height: 75dvh;
        padding-block: calc(var(--section-padding) * 2);
        padding-inline: calc(var(--side-padding) * 1.75);
    }
    section.page-form picture {
        display: none;
    }
    section.page-form > .row > * {
        min-width: 100%;
        height: fit-content;
        position: initial;
        border-right: 0;
        min-height: unset;
    }
    section.page-form > .row > .content {
        padding-bottom: 0;
    }
    form#form {
        position: relative;
    }
    section.page-form .content .container p {
        font-size: 26px;
        font-weight: 200;
        line-height: 130%;
        color: var(--gold);
    }
}

@media
(width <= 768px) and (width >= 520px) {
    /* section.page-form .content .container {
        min-height: auto;
        padding-inline: 6%;
    }
    section.page-form .form {
        position: absolute;
        bottom: 0;
        max-width: 78%;
        padding-block: 8%;
        padding-inline: 6%;
    } */
}

@media
(width <= 520px) {
    section.page-form > .row {
        padding-block: calc(var(--section-padding) * 1.25);
        padding-inline: calc(var(--side-padding) * 0.75);
    }
    section.page-form > .row > .content {
        padding-top: 0;
    }
    section.page-form .content .container p {
        font-size: 21px;
    }
    section.page-form .content .container > div {
        padding: 0!important;
    }
}