.bodyContainer{
    margin: 6px 0 16px 0;
    display: flex;
    justify-content: center;
}

.contact-form{
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 30px;
    width: 40%;
    height: 60%;
    margin-top: 5%;
}

.contact-form .title{
    background-color: cadetblue;
    border-radius: 5px 5px 0px 0px;
    /* font-weight: bold;
    font-size: large; */
    text-align: center;
}

input[type=submit]{
  background-color: black;
  color: #ccc;
  width: 100px;
  padding: 10px;
  border: #ccc 1px;
}

.row{
    margin-top: 5%;
    display: flex;
    /* justify-content: space-between; */
    flex-direction: row;
    flex: 1 1 10%;
    flex-wrap: wrap;
}


.lastrow{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex: 1 1 10%;
    flex-wrap: wrap;
    align-items: flex-end;
}

 .info {
    border-top: 3px solid #47b2e4;
    border-bottom: 3px solid #47b2e4;
    padding: 30px;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 24px 0 rgb(0 0 0 / 10%);
}

.email-form {
    width: 100%;
    border-top: 3px solid #47b2e4;
    border-bottom: 3px solid #47b2e4;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 24px 0 rgb(0 0 0 / 12%);
}

button[type=submit]{
    background-color: black;
    color: #ccc;
    width: max-content;
    padding: 10px;
    border: #ccc 1px;
  }

/* 
input[type=text].contact-form, select.contact-form.contact-form, textarea.contact-form {
    width: 100%;
    padding: 12px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: none;
}  */

input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: none;
} 
