@import url('../../common/global.css');
body{
    background: url("../image/bg.jpg") no-repeat;
    background-size: 100%;
}
#loginBox{
    width: 350px;
    height: 200px;
    background: #00000098;
    position: absolute;
    left: calc((100% - 350px) / 2);
    bottom: 20px;
    border-radius: 10px;
    border: 1px solid #363535;
    box-shadow: 2px 2px 2px #302b2b;
}
#loginBox ul{
    padding: 8px;
}
#loginBox ul li{
    color: #ffffff;
    height: 35px;
    margin: .8rem 0;
}
#loginBox ul li span{
    display: inline-block;
    width: 80px;
    text-align: center;
    height: 100%;
    line-height: 35px;
}
#loginBox ul li input{
    display: inline-block;
    width: calc(100% - 100px);
    height: 100%;
}
#loginBox ul li button{
    display: inline-block;
    width: calc(100% - 100px);
    background: #9a6e3a;
    margin: 15px 0 0 85px;
    color: white;
    border: none;
    height: 35px;
    cursor: pointer;
}