.container-connect{
    width: 90%;
    margin: 100px auto;
}
.contact-box{
    background: '';
    display: flex;
}
.contact-left{
    flex-basis: 60%;
    padding: 40px 60px;
    background: #fff;
    color: black;
}

.contact-right{
    flex-basis: 40%;
    padding: 40px ;
    background-color: rgb(46, 46, 241);
    color: #fff;
}

h1{
    margin-bottom: 10px;
}

.container-connect p{
    margin-bottom: 40px;
}

.input-row{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.input-row .input-group{
    flex-basis: 45%;
}

input{
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    padding-bottom: 5px;
}
textarea{
    width: 100%;
    border: 1px solid #ccc;
    outline: none;
    padding: 10px;
    box-sizing: border-box;
}
label{
    margin-bottom: 6px;
    display: block;
    color: #1c00b5;
}

.button{
    background: #1c00b5;
    color: #fff;
    width: 100px;
    border: none;
    outline: none;
    height: 35px;
    border-radius: 30px;
    margin-top: 20px;
}
.contact-left h3{
    color: #1c00b5;
    font-weight: 600;
    margin-bottom: 30px;
}

tr td:first-child{
    padding-right: 20px;
}

tr td{
    padding-top: 20px;
}




@media screen and (max-width: 768px) {
    .contact-box{
        background: '';
        display: flex;
        flex-direction: column;
    }

}