/* 设置内外边距 字体 */
*{
    padding: 0;
    margin: 0;
    font-family: "Aguazyuan",Courier,monospace;
}

.content{
    /* 设置整个页面的窗口宽度 */
    width: 100vw;
    /* 设置整个页面的窗口高度 */
    height: 100vh;
 
    /* 设置背景，图片加载失败时使用原颜色 */
    background: url(../asset/hd.png) no-repeat center center fixed, rgb(186, 175, 221);
    /* 设置相对定位 */
    position: relative;
}


.content .login-wrapper{
    width: 70vw;
    height: 80vh;
    /* 背景颜色 */
    background-color: #fff;
    /* 设置边框锐度 */
    border-radius: 40px;
    /* 绝对定位 */
    position: absolute;
    left: 50%;
    top: 50%;
    /* 将元素对齐 */
    transform: translate(-50%,-50%);
    /* 设置弹性布局 */
    display: flex;
}

.left-img{
    border-radius: 40px;
    flex: 1;
    background: url(../asset/bg.jpg) no-repeat;
    background-size: cover;
    position: relative;
}

.content .login-wrapper .left-img .glass{
    width: 60%;
    padding: 20px;
    /* 毛玻璃颜色 */
    color: #000000;
    /* 设置绝对定位 */
    position: absolute;
    top: 20%;
    left: 50%;
     /* 将元素对齐 */
     transform: translate(-50%,-20%);
     /* 背景颜色 */
     background-color: rgba(255, 255, 255, 0.1);
    /* 设置阴影 */
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.7);
    /* 背景毛玻璃 */
    backdrop-filter: blur(10px);
    /* 针对内核浏览器是旧版浏览器的,设置 */
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.48);
}

.content .login-wrapper .left-img .glass .tips .title{
    width: 25%;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    padding: 10px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 136, 0.37);
      /* 背景毛玻璃 */
      backdrop-filter: blur(10px);
      /* 针对内核浏览器是旧版浏览器的,设置 */
      -webkit-backdrop-filter: blur(10px);
      border-radius: 15px;
      border: 1px solid rgba(255, 255, 255, 0.48);
}

.content .login-wrapper .left-img .glass .tips h1{
    margin: 15px 0 ;
}

.content .login-wrapper .left-img .glass .tips span{
   margin: 5px 0;
   display: block;
   font-family: 100;
}

.content .login-wrapper .right-login-form{
    flex: 1;
    position: relative;
}

.form-wrapper{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.content .login-wrapper .right-login-form .form-wrapper h1{
    font-size: 30px;
    text-align: center;
}


.content .login-wrapper .right-login-form .form-wrapper .input-items{
    margin: 20px 0;
}

.input-tips{
    display: inline-block;
    font-weight: 600;
    font-size: 20px;
    margin: 10px 0;
}

.inputs{
    width: 100%;
    height: 50px;
    border-radius: 10px;
    border: 1px solid rgb(227, 227, 227);
    padding: 20px;
    box-sizing: border-box;
    outline: none;
    transition: 0.5s;
}

.inputs:focus{
    border: 1px solid rgb(128, 106, 196);
}

.forgot{
    float: right;
    font-weight: 600;
    text-align: right;
    margin: 5px 0;
    font-size: 13px;
    /* 鼠标放上变小手 */
    cursor: pointer;
}

.btn{
    width: 100%;
    height: 50px;
    background-color: rgb(128, 106, 196);
    border: 0;
    border-radius: 10px;
    color: #fff;
    font-size: 25px;
    margin: 20px 0;
     /* 鼠标放上变小手 */
     cursor: pointer;
}

.siginup-tips{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

.siginup-tips span:last-child{
    color: rgb(110, 87, 179);
      /* 鼠标放上变小手 */
      cursor: pointer;
}
.divider{
    width: 100%;
    margin: 20px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.line{
    display: inline-block;
    max-width: 35%;
    width: 35%;
    flex: 1;
    height: 1px;
    background-color: rgb(162, 172, 185);
}
.divider-text{
    vertical-align: middle;
    margin: 0 20px;
    display: inline-block;
    width: 50px;
    color: rgb(162, 172, 185);
    white-space: normal;
}

.other-login-wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.other-login-item{
    width: 70px;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    color: rgb(51, 59, 116);
    margin: 0 10px;
    transition: 0.4s;
}
.other-login-item img{
    width: 40px;
    height: 40px;
    /* 设置元素垂直对齐方式 */
    vertical-align: middle;
}

.other-login-item span{
 /* 设置元素垂直对齐方式 */
 vertical-align: middle;
}

.other-login-item:hover{
    width: 80px;
    height: 50%;
    background-color: #fff;
    border: 0;
    box-shadow: 1px 10px 32px 1px rgba(186, 175, 221, 0.37);
}
/* 媒体查询 */
@media (max-width:1024px){
    .login-wrapper{
        padding: 20px;
    }
    .left-img{
        display: none;
    }
    .right-login-form{
        padding: 20px;
    }
} 


