﻿/*登录界面*/
html, body {
    width: 120%;
    height: 120%;
    background: url(../../src/img/loginbg.svg) no-repeat;
    background-size: cover;
    overflow: hidden;
}

form {
    width: 100%;
    height: 100%;
}

/*背景之上黑色0.8透明蒙板*/
.box {
    width: 100%;
    height: 100%;
    background: rgba(13,13,13,0.8);
    z-index: -1;
}

/*登录框 总框*/
.log-box {
    width: 894px;
    height: 538px;
    position: absolute;
    background: rgb(31,31,31);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 999;
    box-shadow: rgba(25,25,25,0.85) 25px 0px 90px 0px;
}

/*登录框 左边块*/
.login-left {
    width: 50%;
    z-index: -999;
}

/*登录框 右边块*/
.login-right {
    width: 447px;
    height: 538px;
    box-shadow: rgba(0,0,0,0.5) -10px 0px 40px 0px;
    z-index: 999;
    transition: all 0.2s;
}

#divlogin {
    width: 350px;
    position: absolute;
    transition: all 0.1s;
}

#divregistered {
    width: 350px;
    bottom: 0px;
    position: absolute;
    opacity: 0;
    transition: all 0.1s;
}