.mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    opacity: 0.6;
    filter: alpha(opacity=60);
    border: none;
}

#LoginBox,
#editBox {
    position: absolute;
    left: 40%;
    top: 25%;
    background-color: white;
    width: 426px;
    height: 300px;
    border-radius: 7px;
    z-index: 100;
    display: none;
}

.row1 {
    background-color: #f7f7f7;
    padding: 0 20px;
    line-height: 50px;
    height: 50px;
    font-weight: bold;
    font-size: 20px;
    color: #666;
    border-radius: 7px;
}

.row {
    height: 77px;
    line-height: 77px;
    padding: 0 30px;
    font-size: 16px;
}

.close_btn {
    font-size: 30px;
    font-weight: 700;
    color: #999;
    text-decoration: none;
    float: right;
    padding-right: 4px;
}

.inputBox {
    border: 1px solid #c3c3c3;
    padding: 5px 3px 6px 3px;
    border-radius: 5px;
    margin-left: 5px;
}

.inputBox--account {
    margin-left: 9px;
}

#txtName,
#txtPwd,
#txtNewPwd,
#txtComfirmPwd {
    height: 30px;
    width: 230px;
    padding: 0 5px;
    font-size: 14px;
    border: none;
    outline: 0;
}

.login-wrapper {
    text-align: center;
}

#loginBtn,
#editBtn {
    color: white;
    background-color: #113b71;
    text-decoration: none;
    padding: 10px 95px;
    margin-top: 40px;
    font-size: 20px;
    border-radius: 5px;
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.warning {
    float: right;
    color: red;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    margin-right: 20px;
    display: none;
}