.block-form {
    padding: 100px 60px;
}
section.block-form.dark{
    background-color: var(--wp--preset--color--grey-04);
}
section.block-form.light{
    background-color: var(--wp--preset--color--grey-03);
}
.block-form .inner-form{
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: center;
    max-width: var(--wp--custom--layout--content-size);
    margin: 0 auto;
}

.block-form .column-form{
    max-width: 584px;
    flex: 0 1 50%;
}
.block-form .column-image{
    flex: 0 1 50%;
}
.block-form .column-image .image{
    width: 100%;
}
.block-form .column-image .image img {
    width: 100%;
    height: 375px;
    object-fit: cover;
}
.block-form .columnas {
    display: flex;
    align-items: center;
    gap: 7px;
    align-self: stretch;
}
.block-form .form-block{
    margin: 31px 0;
}
.block-form .wpcf7 input[type="submit"] {
    width: max-content;
}
@media (max-width: 920px) {
    .block-form {
        padding: 30px 20px;
    }
    .block-form .inner-form{
        flex-direction: column;
    }
    .block-form .column-image{
        display: none;
    }
    .block-form .columnas {
        display: block;
    }
    .block-form .wpcf7 input[type="submit"], .block-form .wpcf7 .wpcf7-submit {
        display: inline-block;
        width: 100%;
        text-align: center !important;
        text-indent: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        justify-content: center;
    }

}