*{
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}


input:focus{
    outline: none;
}
.form{ position: relative;}
.form input{
    width: 400px;
    height: 30px;
    font-size: 16px;
    background: none;
    border: none;
    border-bottom: 1px solid #b2b2b2;
    color: #666;
    margin-bottom: 38px;
   
}
.form input::placeholder{
    color: #999;
    font-size: 14px;

}
.confirm{
    height: 0;
    overflow: hidden;
    transition: .25s;
}
.btn{
    width:100%;
    height: 50px;
   
    font-size:20px;
    color: #fff;
    cursor: pointer;
    margin-top: 25px;
    border-radius:5px;
    border:none;
    transition: .25s;
    background: linear-gradient(45deg, #4181e5, #0fe8eb);
}
.btn:hover{
    background: linear-gradient(45deg,  #0fe8eb,#4181e5);
}
#login_wrap{
    width: 980px;
    min-height: 500px;


    position: fixed;
    top: 50%;
    right: 50%;
    margin-top: -250px;
    margin-right: -490px;
}
#login{
    width: 50%;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(45deg, #fff, #fff);
    position: relative;
    float: right;
    box-shadow: 0 0 5px 0 #f5f5f5;
    border-radius: 0px 10px 10px 0px;
}
#login #status{
    width: 120px;
    height: 35px;
    margin: 40px auto;
    color: #5b5b5b;
    font-size:24px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}
#login #status i{
    font-style: normal;
    position: absolute;
    transition: .5s
}
#login span{
    
    position: absolute;
    left: 50%;
    margin-left: -200px;
    top: 52%;
    margin-top: -140px;
}
#login span a{
    text-decoration: none;
    color: #fff;
    display: block;
    margin-top: 80px;
    font-size: 18px;
}
#bg{
    background: linear-gradient(45deg, #4181e5, #0fe8eb);
    height: 100%;
}
/*绘图*/
#login_img{
    width: 50%;
    min-height: 500px;
    background: linear-gradient(45deg, #145eff, #4db6e4);
    float: left;
    position: relative;
    z-index:9;
    box-shadow: 0 0 5px 0 #f5f5f5;
    border-radius: 10px 0px 0px 10px;

}
#login_img img{bottom:10px;position: absolute;z-index:999;}
.code{width:100px;height:40px;position: absolute;right:2px;bottom:45px}
.remember{font-size:14px}
.title{padding: 0 0 6%;width:100%;margin-top:200px;text-align: center;font-size: 50px;color:#fff}
/*提示*/
#hint{
    width: 100%;
    line-height: 70px;
    background: linear-gradient(-90deg, #9b494d, #bf5853);
    text-align: center;
    font-size: 25px;
    color: #fff;
    box-shadow: 0 0 20px #733544;
    /* display: none; */
    opacity: 0;
    transition: .5s;
    position: absolute;
    top: 0;
    z-index: 999;
}
/* 响应式 */
@media screen and (max-width:1000px ) {
    #login_img{
        display: none;
    }
    #login_wrap{
        width: 490px;
        margin-right: -245px;
    }
    #login{
        width: 100%;
        
    }
    .title{font-size:30px;}
}
@media screen and (max-width:560px ) {
    #login_wrap{
        width: 330px;
        margin-right: -165px;
    }
    #login span{
        margin-left: -125px;
    }
    .form input{
        width: 250px;
    }
 
   
}
@media screen and (max-width:345px ) {
    #login_wrap {
        width: 290px;
        margin-right: -145px;
    }
}