﻿body {
    background-color: #f7f7f8;
}

#errorMessage {
    display: none;
}

#responseMsg {
    display: none;
}

/** VERTICAL & HORIZONTAL Centering of Form Panel 600px and up for tablet and desktop **/
@media only screen and (min-width: 600px) {
    body {
        display: flex; /* switches from block to flex for vertical centering */
        align-items: center;
        height: 100vh; /* 100vh references the browser window to vertically center */
    }
}