.login_box {
    display: none;
    z-index: 99;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.4;
    filter: alpha(opacity=40);
}

#login{
    display: none;
    z-index: 9999;
    background-color:#ffffff;
    position: fixed;
    left: 50%;
    top: 50%;
    width: 590px;
    height:390px;
    margin-left: -295px;
    margin-top: -195px;
    /* margin: 0 0 0 -312px; */
    /* border: 1px solid #ccc; */
    /*border-radius: 5px;*/
    -webkit-box-shadow: 0 5px 18px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 5px 18px rgba(0, 0, 0, .1);
    box-shadow: 0 5px 18px rgba(0, 0, 0, .1);
}
.login_img{
    width: 275px;
    height: 350px;
    float: left;
    background: url(../img/login.png) no-repeat center #d9f0fe;
    background-size: 275px;
}

input:focus{outline:none;}

.username {
    width: 100%;
    /*  width: calc(100% - 30px);*/
    border: none;
    border-bottom: 1px solid #cccccc;
    font-size: 14px;
    /*background: url(img/userimg.png) 5px 5px no-repeat;*/

    height: 30px;
    line-height: 30px;

}
.password {
    width: 100%;
    /* width: calc(100% - 30px);*/
    border: none;
    border-bottom: 1px solid #cccccc;
    font-size: 14px;
    /*background: url(img/passwordimg.png) 5px 5px no-repeat;*/

    height: 30px;
    line-height: 30px;

}
.check_box {
    margin-top: 18px;
    margin-right: 4px;
    border: 1px solid #ccc;
    height: 14px;
    width: 14px;
    background-color: #fff;
    /* display: block; */
    float: left;

}
.checked_box {
    background: #fff url(../img/check1.png) no-repeat center;
}

.popup_close {
    width: 30px;
    height: 30px;
    float: right;
    cursor: pointer;
    background: url(../img/register-icon2.png) no-repeat center;
    background-size: 15px;
    margin-right: 5px;
    margin-top: 5px;
}
.login_botton{
    width: 100%;
    height: 35px;
    background-color: #069cff;
    text-align: center;
    margin-top: 15px;
    color: #ffffff;
    line-height: 35px;
    cursor: pointer
}