.contact-us {
    margin: 50px;
}
.contact {
    text-align: center;
    /* padding-top: 140px; */
    padding: 40px;
    font-weight: bold;
    font-size: 25px;
}
.contact-box {
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: center;
}
.contact-box .box{
    border-radius: 5px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    width: 50vh;
}

form {
    padding: 20px 20px;
    flex-direction: column;
}

.input-field {
    width: 100%;
    height: 40px;
    margin-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #777;
    border-radius: 14px;
    outline: none;
}

.textarea-field {
    border: 1px solid #777;
    border-radius: 14px;
    outline: none;
    width: 100%;
    height: 150px;
    padding-top: 10px;
    margin-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

.contact-btn{
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-btn {
    /* position: rela; */
    text-decoration: none;
    display: inline-block;
    margin-top: 1em;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, .1);
    padding: .8em 3em;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    border-radius: .5em;
    border: .2rem solid rgba(0, 0, 0, .1);
    font-weight: bolder;
    /* align-items: center; */
}

.submit-btn:hover {
    background: rgb(255, 196, 0);
    color: #fff;
}