.content-form-section {
    width: 65%;
    /* background-color: red; */
    display: flex;
    /* gap: 40px; */
    margin: 30px auto;
    border: 1px solid var(--primary-color);
    border-radius:15px;
}

.content-form-section .content {
    border-top-left-radius:15px;
    border-bottom-left-radius:15px;
    flex-basis: 50%;
    background-color: var(--tertiary-color);
    padding: 20px;
    height: 750px;
    overflow-y: auto;
}
.content-form-section .form {
    padding: 20px;
    flex-basis: 50%;
}

.checkboxes-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}


@media screen and (max-width: 950px) {
    .content-form-section {
        width: 95%;
    }
}

@media screen and (max-width: 800px){
    .checkboxes-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 550px) {
    .content-form-section {
        width: 90%;
        flex-direction: column-reverse;
    }
    .content-form-section .content {
        border-top-left-radius: 0;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
        height: unset !important;
    }
}