@font-face {
    font-family: "Roboto";
    src: url("/static/fonts/Roboto-Regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}
body {
    background-color: white;
    color: #9D9D9D;
    font-family:Roboto;
    font-size: 24px
}

.login-container {
    border:1px solid black;
    margin: 0 auto;   /* centered */
    padding-left: 20px;
    height: 1000px;
    width: 50%;
}

.login-label {
    font-family:Roboto;
    font-size: 22px
}

.container {
    border:1px solid black;
    margin: 0 auto;   /* centered */
    padding-left: 20px;
    height: 1000px;
    width: 50%;
}

..message-container {
    height: 400px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    overflow-y: auto; 
    padding: 10px;    
}


.button-link {
    background-color: #f0f0f0;
    border: 1px solid #888;
    border-radius: 4px;
    box-shadow:
        1px 1px 2px rgba(0,0,0,0.3);
    color: black;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-family: inherit;
    padding: 6px 12px;
    text-decoration: none;
}

.button-link:hover {
    background-color: #e0e0e0;
}

.button-link:active {
    box-shadow: inset 1px 1px 2px rgba(0,0,0,0.3);
}

