body{
    top: 0px;
    left: 0px;
    margin: 0;
    background-color: #276e9f;
    font-family: Arial, sans-serif;
    font-size: 1em;
    display: grid;
    grid-template-columns: 220px;
    grid-template-rows: 56px 1fr;
    grid-template-areas:
        "menu topbar"
        "menu content";
    height: 100vh;
}

h1{
    font-family: 'Trebuchet MS', 'Arial', sans-serif;
    font-size: 2rem;
}

#loginPanel, #content{
    border: 1px solid grey;
    padding: 30px;
    background-color: white;
    border-radius: 15px;
    margin-top: 30px;
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 400px;
    text-align: center;
}

.submitBtn:hover{
    background-color: #1d86cf;
}

.submitBtn{
    padding: 3px 12px;
    border-radius: 4px;
    background-color: #28a8ff;
    color: white;
    border: 0;
    cursor: pointer;
    transition: background-color 0.2s;
}

#logoCorner {
    height: 47px;
    cursor: pointer;
    display: block;
    margin: auto;
    margin-top: 7px;
    margin-bottom: 7px;
}

.logo{
    max-height: 200px;
    max-width: 200px;
    margin: 15px;
    vertical-align: bottom;
}

input {
    background-color: white;
    text-align: left;
    font-size: 120%;
    border:1px solid #999999;
    padding-left:5px;
    border-radius: 5px;
    line-height: 2.0;
}
#password, .email{
    width:350px;
    border-radius: 5px;
    margin:3px 0px;
}
#submitButton {
    background-color: transparent; /* override input background */
    color:black; /* since no background */
    cursor:pointer;
    border:0;
}
#submitButton:hover {
    background-color: rgba(0,0,0,0.1);
}

/* override chrome pale yellow when fields are autofilled.*/
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 220px white inset;
}
#menu{
    grid-area: menu;
    color: white;
    min-height: 100vh;
    position: fixed;
    width: 220px;
}

#contentBackgroundPanel {
    grid-area: content;
    background-color: #e8e7e7;
    border-top-left-radius: 15px;
}

#forgottenPasswordLink {
    cursor:pointer;
}