p {
    margin-bottom: 10px
}
input[type="text"], input[type="email"]{
    margin-bottom: 5px;
}
input:focus { background-color: #e0e8ef
}

.contact {
    display: flex;           /* establish flex container */
    flex-direction: column;  /* make main axis vertical */
    justify-content: center; /* center items vertically, in this case */
    align-items: center;     /* center items horizontally, in this case */
    height: 700px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
}
.contact>div {
    padding: 7px;
    border-left: 1px solid #737373;
    border-top: 1px solid #737373;
    border-right: 3px solid #737373;
    border-bottom: 3px solid #737373;
    background: #f1f1f1;
    border-radius: 7px;
    width: auto;
    min-width: 60%;
}
.contact>div>div { margin-left: auto; margin-right: auto; }

.msgText {
    background: #efefef;
    border: 0px;
    margin-top: 15px;
    font-weight: bold;
}

.divEmail {
    text-align: center;
    margin-top: 15px;
}

.btnEmail {
    border-radius: 10px;
    background: #0f3b74;
    color: #fff;
    padding: 10px;
    width: 100%;
    cursor: pointer;
}
.divMsg {
    margin-top: 15px;
    margin-bottom: 15px;
    color: green;
}

@media only screen and (max-width: 600px) {
    .contact>div { width: 100%; }
}