html,body,p,h1,h2,h3,h4,h5,h6,form,table{
    margin: 0;
    padding: 0;
}
body, html{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
body{
    background: url(../images/bg_login.jpg) no-repeat;
    background-size: 100% 100%;
}

#login-box{
    position: absolute;
    width: 350px;
    height: 350px;
    background:rgba(77, 108, 198, 0.5);
/*    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);*/

    left: 50%;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    padding-top: 50px;
    text-align: left;
    border-radius: 5px;
}

#login-box #title{
    color: #fff;
    line-height: 64px;
    font-weight: 700;
    font-size: 20px;
}

#logo{
    margin-top: 50px;
    margin-left: 100px;
    color: #fff;
    height: 64px;
    font-size: xx-large;
}

#imageLeft{
    background: url(../images/imgleft_login.png) no-repeat;
    background-size: contain;
    margin-left: 160px;
    margin-top: 35px;
    height: 62%;
}

#login-box form{
    height: 200px;
    margin: 0 auto;
    color: #fff;
}
#login-box table{
    width: 85%;
    margin: 0 auto;
}

#login-box form input{
    width: 200px;
    height: 30px;
    border: 1px solid #ccc;
    background: #fff;
    outline: none;
    padding-left: 10px;
    border-radius: 5px;
}

#login-box form input:nth-child(2){
    margin-top: 20px;
}

#password{
	margin-top:20px;
}

#submit{
    width: 210px;
    height: 35px;
    border-radius: 5px;
    border: none;
    background: rgb(32,215,255);
    color: #fff;
    font-size: 16px;
    outline: none;
}

#login-box form button{
    margin-top: 20px;
}

#login-box form button:hover{
    background: rgb(4, 162, 197);
}