.app{
    background: linear-gradient(90deg,#def1fe,#f1f1f8);
}
.header{
    background-color: #e8f1fb;
}
.bodyer-main{
    padding: 60px 0 120px 0;
}
.page-banner{
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(-90px, 0);
}
.page-banner .banner-text{
    font-size: 48px;
    color: #333;
    font-weight: 800;
    transform: translate(-50px, -25px);
}
.login-wrap{
    width: 662px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #c7d6ea;
    border-radius: 20px;
    box-shadow: 13px 13px 16px rgba(58, 97, 187, 0.27);
    overflow: hidden;
    position: relative;
    top: -60px;
}
.login-container{ 
    padding: 60px 0;
    width: 480px;
    margin: 0 auto;
}
.login-title{
    margin-bottom: 50px;
    font-size: 30px;
    color: #333;
    font-weight: 700;
}
.login-item{
    display: flex;
    align-items: center;
}
.login-item + .login-item{
    margin-top: 40px;
}
.login-item-name{
    width: 110px;
    text-align: right;
    font-size: 18px;
    color: #999;
}
.login-item-value{
    width: 238px;
    margin: 0 12px;
}
.login-ipt{
    width: 100%;
    padding: 8px 10px;
    box-sizing: border-box;
    border: 1px solid #c7d6ea;
    font-size: 18px;
    color: #333;
    transition: 0.3s;
}
.login-ipt:focus{
    border-color: #4a86f6;
}
.login-item-icon{
    background: #fff;
}
.check{
    display: flex;
    align-items: center;
    width: 360px;
    margin: 40px auto 70px auto;
    background: #7ac23c;
    border: 1px solid #7ac23c;
    line-height: 47px;
}
.check .check-text{
    flex: 1;
    color: #fff;
    font-size: 18px;
    text-align: center;
}
.check .check-state{
    width: 67px;
    background-color: #fff;
    text-align: center;
}
.check .check-icon{
    display: inline-block;
    width: 29px;
    height: 29px;
    border: 1px solid #ccc;
    border-radius: 100px;
    vertical-align: middle;
    position: relative;
}
.check .check-icon.on{
    border-color: #7ac23c;
    background: #7ac23c;
}
.check .check-icon.on::before {
    position: absolute;
    content: " ";
    width: 8px;
    height: 14px;
    transform: rotate(45deg);
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    top: 5px;
    left: 10px;
}
.form-btn{
    width: 300px;
    margin: 20px auto 0 auto;
    padding: 16px 0;
    background: #4a86f6;
    text-align: center;
    border-radius: 100px;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 6px 18px rgba(77, 127, 222, 0.57);
    cursor: pointer;
}
.my-btn{
    padding: 10px 16px;
}

::-webkit-input-placeholder{
    color: #999;
}