.custom-form-flex {
    margin-top: 60px;
}

.custom-form-flex .cff-wrap {
    border: 6px solid #f7941d;
    background: #fff;
}
.custom-form-flex .cff-container {
    display: flex;
    margin: 0 auto;
    gap: 28px;
}
.custom-form-flex .cff-form-card {
    flex: 1;
    padding: 36px;
    box-sizing: border-box;
}
.custom-form-flex .cff-title {
    margin: 0 0 12px;
    font-family: "robotobold";
    font-size: 24px;
}
.custom-form-flex .cff-lead {
    margin: 0 0 26px;
    font-size: 15px;
}
.custom-form-flex .cff-row {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
}
.custom-form-flex .cff-col-left,
.custom-form-flex .cff-col-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.custom-form-flex .cff-col-left {
    gap: 20px;
}
.custom-form-flex .cff-col-right {
    justify-content: stretch;
}
.custom-form-flex .cff-field {
    display: flex;
    flex-direction: column;
}
.custom-form-flex .cff-field label {
    margin-bottom: 8px;
}
.custom-form-flex input[type="text"],
.custom-form-flex input[type="tel"],
.custom-form-flex textarea {
    border: none;
    background: #f0f0f0;
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 4px;
    min-height: 48px;
    box-sizing: border-box;
}
.cff-field.cff-field-textarea {
    height: 100%;
}
.custom-form-flex textarea {
    flex: 1;
    resize: none;
}
.custom-form-flex .cff-consent {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 14px;
}
.custom-form-flex .cff-consent input {
    margin-top: 3px;
}
.custom-form-flex .cff-consent a {
    color: #888888;
    text-decoration: none;
}
.custom-form-flex .cff-actions {
    margin-top: 10px;
}
.custom-form-flex .cff-btn {
    background: #f7941d;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    margin-top: 10px;
}
.custom-form-flex .cff-btn:hover {
    background: #d67a12;
}
.custom-form-flex .cff-aside {
    width: 340px;
    background: url("/images/form-bg.jpg") center center / cover no-repeat;
    border-radius: 4px;
}
@media (max-width: 1023px) {
    .custom-form-flex .cff-container {
        flex-direction: column;
    }
    .custom-form-flex .cff-aside {
        display: none;
    }
    .custom-form-flex .cff-row {
        flex-direction: column;
    }
    .custom-form-flex .cff-consent {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .custom-form-flex .cff-form-card {
        padding: 20px;
    }
    .custom-form-flex .cff-title {
        font-size: 22px;
    }
    .custom-form-flex .cff-btn {
        width: 100%;
        font-size: 15px;
        padding: 12px 18px;
    }
}
