html.login-background,body.login-background {
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#079), color-stop(100%,#035));
    background: -webkit-linear-gradient(-45deg, #079 0%,#035 100%);
    height:100%;
    overflow:hidden;
}

.info {
    border-radius:1em;
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#4c4c4c), color-stop(100%,#131313));
    background: -webkit-linear-gradient(-45deg, #4c4c4c 0%,#131313 100%);
    top:0px;
    height: 4em;
    width: 100%
    box-shadow:3px 3px 7px #000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.login-popup {
    border-radius:25px;
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#4c4c4c), color-stop(100%,#131313));
    background: -webkit-linear-gradient(-45deg, #4c4c4c 0%,#131313 100%);
    display:block;
    position:absolute;
    box-shadow:3px 3px 7px #000;
    top:10%;
    left:25%;
    width: 50%;
    height: 80%;
}

#loginCanvas {

}

.loginUsername-label {
    margin-left: 1em;
    margin-right: 10px;
    color: white;
    font-size: 150%;
}

#loginUsername {
    margin-right: 40px;
    background-color : black;
    color: white;
    font-size: 150%;
    width: 60%;
}