.form_section  {
    position: relative;
}
.form_section .form_section_inner {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 100px;
    padding-left: 6rem;
    padding-right: 6rem;
    padding-top: 6rem;
    padding-bottom: 6rem; 
}
.form_section .title_wrapper {
    max-width: 80%;
}
.form_section .dotted_pattern {
    position: absolute;
    left: 0;
    bottom: 10px;
}
.form_section .content_wrapper {
    max-width: 80%;
}
.form_section .form_left .form_image {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.form_left {
    position: relative;
    z-index: 2;
}
.form_right {
    position: relative;
    z-index: 2;
}
@media(max-width: 1025px) {
    .form_section .form_section_inner {
        gap: 60px;
    }
    .form_section .title_wrapper {
        max-width: 100%;
    }
    .form_section .content_wrapper {
        max-width: 100%;
    }
}
@media(max-width: 991px) {
    .form_section .form_section_inner {
        grid-template-columns: 1fr;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .form_section .form_section_inner {
        gap: 40px;
    }
    .form-column {
        grid-template-columns: 1fr;
        grid-gap: unset;
    }
}
@media(max-width: 500px) {
    section#form {
        padding-top: 20px!important;
        padding-bottom: 60px!important;
    }
}