

.msgForm{
    display: flex;
    flex-direction: column;
    width: 100%;
    color: white;
    font-size: 1em;
}
.formRow{
    display: flex;
    width: 100%;
    
    
}
.fieldWrapper{
    width: 100%;
    padding: 10px;
}
input, textarea{
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #679334;
border-radius: 4px;
box-sizing: border-box;
font-size: 1em;
color: white;
background-color: inherit;
}
/* submit */
input[type=submit] {
width: 100%;
background-color: #679334;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}

input[type=submit]:hover {
    background-color: #FFFFFF;
    color: #679334;
}


.submitStatus{
    position: relative;
    background-color: white;
    color: black;
    display: none;
}