input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #E8E8E8;
}

input[type="checkbox"],
.form__right__dd label {
    cursor: pointer;
}

.form {
    display: flex;
    justify-content: space-between;
    max-width: 1260px;
    margin: 0 auto 100px;
}

.form__left {
    width: 100%;
    max-width: 460px;
}

.form__right {
    width: 100%;
    max-width: 700px;
    padding: 30px;
    background-color: #F6F6F6;
}

.form__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 18px;
}

.form__right__dd label {
    display: block;
}

.mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0;
}

.form__right__dl {
    margin-bottom: 20px;
}

.form__right__dd--flex {
    display: flex;
}

.form__left__sub {
    position: relative;
    font-size: 14px;
    font-weight: bold;
}

.required {
    margin: 0 10px;
    padding: 5px;
    background-color: #707071;
    color: #fff;
    border-radius: 5px;
    font-size: 12px;
}

.form__left__sub::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 160px;
    width: 200px;
    height: 1px;
    display: block;
    background-color: #000;
}

.form__left__title {
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: bold;
}

.form__left__img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 30px;
}

.form__right__consent {
    margin-bottom: 20px;
}

.form__submit__btn {
    display: block;
    width: 260px;
    margin: 0 auto;
    padding: 15px 0;
    background-color: #DE231D;
    color: #fff;
    border-radius: 50px;
    font-size: 20px;
    text-align: center;
}


.form-thanks {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto 100px;
    text-align: center;
}

.form__right__dd--flex {
    display: flex;
}

.form__right__dd--flex .mwform-checkbox-field:first-of-type {
    margin-right: 10px;
}

.mwform-checkbox-field input, .mwform-radio-field input {
    margin-right: 0;
}

@media screen and (max-width: 1024px) {

    .form {
        display: block;
        padding: 0 20px;
    }

    .form__left {
        width: 100%;
        max-width: none;
    }
    
    .form__right {
        width: 100%;
        max-width: none;
        padding: 20px;
    }

    .required {
        width: 38px;
        text-align: center;
    }
    
    .form__left__text {
        margin-bottom: 20px;
    }

    .form__right__dd.form__right__dd--flex .mwform-checkbox-field {
        width: 80%;
    }

    .form__right__dd--flex {
        align-items: flex-start;
    }
}