@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');


.kgm_contact_container {
    display: flex;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 120px;
    background-color: #f7f8fc;
}

.kgm_contact_box {
    border-radius: 8px;
    max-width: 1000px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    background-color: #fff;
}

.kgm_contact_topbar {
    display: block;
    padding: 4px;
    line-height: 20px;
    background-color: #333;
    color: #fff;
    font-size: 18px;
    font-weight: 450;
}

form {
    border-right: 1px solid #ecf2ff;
    align-items: center;
    justify-content: center;
    padding: 30px;
    flex: 1;
}


.kgm_contact_features {
    margin-top: 0px;
    padding-right: 15px;
    background-color: #eee;
    border: solid #eee 2px;
}




.kgm_contact_form_control {
    margin: 5px 0;
    width: 100%;
    color: #555;
}

label {
    display: inline-block;
    font-weight: bold;
    margin-bottom: 5px;
}

input:not([type="checkbox"]) {
    background-color: transparent;
    border: 2px solid #ecf2ff;
    border-radius: 3px;
    font-family: inherit;
    font-size: 14px;
    padding: 10px;
    width: 100%;
}

.kgm_contact_checkbox_container {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 15px;
    width: 100%;
}

.kgm_contact_checkbox_container a {
    margin-left: auto;
}

.kgm_contact_checkbox_container label {
    color: #7a7e8c;
    font-weight: normal;
}

.kgm_contact_btn {
    cursor: pointer;
    background-color: #666;
    border: 2px solid #666;
    border-radius: 5px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-weight: bold;
    font-size: 14px;
    padding: 10px;
    margin: 5px 0;
    width: 100%;
}

.kgm_contact_btn_ghost {
    background-color: transparent;
    border-color: #ecf2ff;
    color: #555;
}

.kgm_contact_btn img {
    margin-right: 5px;
    width: 20px;
}

.kgm_contact_features_old {
    flex: 0.4;
    padding: 5px;
}


.kgm_contact_feature {
    position: relative;
    padding-left: 30px;
    margin: 40px 0;
}

.kgm_contact_feature_header {
    color: #333;
    font-weight: 600;
}

.kgm_contact_feature_text {
    color: #000;
}

.kgm_contact_feature i {
    color: #2762eb;
    position: absolute;
    top: 5px;
    left: 0;
}

.kgm_contact_feature h3 {
    margin: 0;
}

.kgm_contact_feature p {
    font-size: 14px;
    line-height: 1.8;
    margin: 5px 0;
}

@media(max-width: 768px) {
    .kgm_contact_container {
        flex-direction: column;
    }

    form {
        border-right: 0;
    }
}