/*CSS for login views*/
* {
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: normal;
    box-sizing: border-box;
}


h1 {
    font-size: 14px;
    font-weight: bold;
}

h2 {
    font-size: 12px;
    font-weight: bold;
}

.bluebtn { /* blue background, white text, rounded corners */
    background-color: DodgerBlue;
    border: none;
    color: white;
    border-radius: 5px;
    padding: 5px 10px;
    margin: 2px 5px;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
}

#messages{
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 0px;
}
#messages li { /* green as default, only specifying other colors for error and warning below */
    font-weight: bold;
    min-height: 20px;
    line-height: 14px; 
    padding-top: 3px;
    padding-left: 10px;
    padding-right: 10px;
    color: rgb(68, 68, 68);
    background-color: rgb(209, 236, 181);
    display: list-item;
    list-style-type: none;
}
#messages li.error {
    color: white;
    background-color: red;
}
#messages li.warning {
    color: black;
    background-color: orange;
}