﻿html, body {
    width: 100%;
    height: 100%;
}
body {
    margin: 0;
    padding: 0;
    font-size: 11pt;
    font-family: tahoma,arial,sans-serif;
}
.container {
    position: absolute;
    left: 0;
    height: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
}
.spacerColumn, .spacerRow {
    flex-grow: 1;
}
#centerColumn {
    display: flex;
    flex-direction: column;
}
#testMarker {
    position: fixed;
    top: 0;
    font-weight: bold;
    color: rgba(136,0,0,0.7);
    background-color: rgba(255, 136, 136, 0.8);
    z-index: 5;
    text-align: center;
    left: 1050px;
    width: calc(100vw - 1400px);
    font-size: 18px;
    line-height: 20px;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    padding: 5px 30px;
}
#resDisplay {
    position: fixed;
    left: 0;
    bottom: 0;
    color: #fff;
}
#pnlLogin {
    background-color: #eeeeff;
    border: solid 1px rgba(0,0,0,0.7);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    border-radius: 0.5vh;
    width: 35vw;
}
.errorPanel {
    margin-top: 1vh;
    background-color: #ffd6d2;
    border: solid 1px rgba(0,0,0,0.7);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    border-radius: 0.5vh;
    width: 35vw;
}
.title {
    width: 100%;
    font-weight: bold;
    font-size: 12pt;
    line-height: 20pt;
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    text-indent: 1vw;
}
label {
    width: calc(100% - 2vw);
    font-weight: bold;
    padding: 1vh 0;
    margin: 0 1vw;
}
input {
    margin: 0 1vw;
    font-size: 14pt;
}
.space {
    width: calc(100% - 2vw);
    padding: 0.5vh 0;
    margin: 0 1vw;
    content: "";
    display: table;
    clear: both;
    font-size: 14pt;
}
.submitButton {
    border-style: none;
    width: 5em;
    height: 5em;
    float: right;
    background: transparent url('../images/login.svg') no-repeat center center;
    background-size: contain;
    margin: 0.5vh 0 0 0;
    filter: drop-shadow(0 1vh 0.5vh rgba(0,0,0,0.2));
}
.submitButton:hover {
    margin: 0 0 0.5vh 0;
    filter: drop-shadow(0 1.5vh 0.6vh rgba(0,0,0,0.2));
}
.submitButton:focus { outline: 0; }
#errorMessage {
    width: calc(100% - 2vw);
    font-weight: bold;
    padding: 1vh 0;
    margin: 0 1vw;
}
.hdn {
    visibility: hidden;
}
@media (max-width: 1000px) {
    #pnlLogin { width: 96vw; }
    .errorPanel { width: 96vw; }
}