.background {
    background-color: #F1F1F1;
    overflow: hidden;
}
.fill {
    width: 100%;
    height: 100%;
}
.active {
    cursor: pointer;
}
.inactive {
    cursor: default;
}

.window {
    position: absolute;
    width: 370px;
    height: 324px;
    background-color: #FCFCFC;
    top: 50%;
    left: 50%;
    margin-left: -185px;
    margin-top: -162px;
    box-sizing: border-box;
    border: 1px solid #E9E6DF;
    box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.1);
}
.window .logo {
    position: relative;
    height: 60px;
    top: 22px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: center;
    justify-content: space-around;
}
.window .logo .eos-logo {
    padding-right: 10px;
}
.window .logo .title {
    font-family: Tahoma;
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    line-height: 18px;
    color: #4074A4;
    display: block;
}

.window > .body {
    background-color: #FAF8F5;
    border-top: 1px solid #E9E6DF;
    position: absolute;
    width: 100%;
    height: 222px;
    bottom: 0;
    left: 0;
}
.window > .body > .label {
    position: absolute;
    left: 79px;
    font-family: 'Segoe UI';
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 12px;
}
.window > .body > .input {
    position: absolute;
    left: 79px;
}
.window > .body > .input > input {
    height: 24px;
    width: 212px;
    background-color: #FFF;
    border: 1px solid #505050;
    box-sizing: border-box;
}
.window > .body > .user-name.label {
    top: 31px;
}
.window > .body > .user-name.input {
    top: 47px;
}
.window > .body > .password.label {
    top: 80px;
}
.window > .body > .password.input {
    top: 96px;
}
.window > .body > button.sign-in {
    position: absolute;
    left: 79px;
    top: 135px;
    height: 24px;
    width: 212px;
    background-color: #4074A4;
    color: #FFF;
    font-family: 'Segoe UI';
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 12px;
    text-align: center;
    border: none;
}
.window > .body > .extra {
    position: absolute;
    width: 212px;
    top: 174px;
    left: 79px;
    box-sizing: border-box;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
}
.window > .body > .extra > .remember {
    font-family: 'Segoe UI';
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 17px;
    color: #505050;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    padding-bottom: 5px;
}
.window > .body > .extra > .remember > [type='checkbox'] {
    margin: 0;
    margin-right: 3px;
}

.window > .body > .extra > .remember > label {
    margin-bottom: 1px;
}

.footer {
    box-sizing: border-box;
    background-color: #EBEBEC;
    width: 100%;
    height: 53px;
    position: absolute;
    bottom: 0;
    left: 0;
    font-family: Tahoma;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 14px;
    padding: 20px;
}
.footer > .copyright {
    color: #505050;
}
.footer > .version {
    float: right;
}

.validation-summary-errors {
    position: absolute;
    width: 370px;
    top: 50%;
    left: 50%;
    margin-left: -185px;
    margin-top: 162px;
    background-color: #E04545;
    color: #FFF;
    font-family: 'Segoe UI';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 100%;
    text-align: center;
    box-sizing: border-box;
    padding: 15px 10px;
}

.validation-summary-errors > pre {
    padding: 0;
    margin: 0;
    white-space: pre-line;
}

.extra-text {
    display: none;
}