.contact-body {
  background: #eee;
  text-align: center;
}
form {
    background: #CED8F6;
    width:100%;
    max-width: 800px;
    padding: 35px 7px;
    margin-top: 30px;
    margin-bottom: -10px;
    display: inline-block;
    border-radius: 10px;
    box-sizing: border-box;
    text-align: center;
}
form [type=text] {
    width: 34%;
    color: #151515;
    padding: 14px 20px;
    margin-top: 8px;
    margin-bottom:8px;
    margin-left:140px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float:left;
}
form [type=email] {
    width: 22%;
    color: #151515;
    padding: 14px 20px;
    margin-top: 8px;
    margin-bottom:8px;
    margin-right: 140px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float:right;
}
form textarea {
    width: 60%;
    height: 120px;
    color: #151515;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
form [type=submit] {
    width: 30%;
    background-color: #819FF7;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;   
}