html, body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
}

body {
    overflow: auto;
}

.screen {
    background-color: blue;
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.loginForm {
    display: inline-block;
    background-color: white;
    border-radius: 4px;
    padding: 10px 30px 10px 30px;
    text-align: center;
}

.windows {
    display: inline-block;
    background-color: white;
    padding: 30px;
    border-radius: 4px;
}

.windows div:nth-of-type(1) {
    position: relative;
}

.windows img {
    padding-left: 50px;
    width: 150px;
    height: 150px;
}

.windows button {
    width: 250px;
    height: 36px;
    line-height: 36px;
    margin-top: 10px;
    border: 0px;
    border-radius: 2px;
    cursor: pointer;
    background: purple;
    color: #FFFFFF;
    font-size: 12pt;
    font-weight: bold;
    padding: 0px;
}

.windows button div:nth-of-type(1) {
    height: 36px;
    width: 214px;
    line-height: 36px;
    float: left;
}

.windows button div:nth-of-type(2) {
    width: 34px;
    height: 24px;
    margin-top: 6px;
    border-left: 1px solid #FFFFFF;
    float: left;
}

#bitVersion {
    position: absolute;
    color: #FFFFFF;
    font-weight: bold;
    right: 52px;
    bottom: 5px;
}

#downloadStatus {
    font-size: 8pt;
    text-align: center;
    width: 100%;
}

.gifLoader {
    width: 20px;
}

#errorMessage {
    font-size: 8pt;
    color: #FF0000;
    width: 100%;
    height: 8px;
    line-height: 8px;
}

#downloadPage {
    display: none;
}

.loginForm button {
    width: 100px;
    height: 36px;
    margin-top: 10px;
    border: 0px;
    border-radius: 2px;
    background: purple;
    color: #FFFFFF;
    font-size: 12pt;
    font-weight: bold;
    cursor: pointer;
}

.loginForm button:focus {
    outline: 0;
}

.loginForm span {
    height: 50px;
    font-weight: bold;
    font-size: 14pt;
    line-height: 40px;
}

.loginForm label {
    display: inline-block;
    font-weight: bold;
    text-align: left;
    color: #444444;
    width: 100px;
    height: 40px;
    font-size: 12pt;
    line-height: 40px;
}

input:focus {
    outline: none;
}

button:focus {
    outline: none;
}

.loginForm input {
    background: transparent;
    padding: 5px;
    border: 0px;
    border-bottom: 1px solid #AAAAAA;
    border-radius: 0px;
    box-sizing: border-box;
    margin: 6px 0;
    height: 40px;
    width: 150px;
    font-size: 12pt;
    line-height: 40px;
}