.app{
    background: #bed9ff;
}
.header{
    background: linear-gradient(90deg,#def1fe,#f1f1f8);
}
.bodyer-main{
    padding: 60px 0 120px 0;
}
.login-wrap{
    width: 902px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 18px rgba(91, 177, 243, 0.72);
    overflow: hidden;
}
.login-container{ 
    display: flex;
    align-items: center;
}
.login-left{ 
    font-size: 0;
}
.login-right{
    flex: 1;
    margin: 0 60px;
}
.login-title{
    margin-bottom: 50px;
    font-size: 30px;
    color: #333;
    font-weight: 700;
}
.login-item{
    margin-bottom: 24px;
}
.login-item-name{
    margin-bottom: 10px;
    font-size: 18px;
    color: #999;
}
.login-item-value{
    position: relative;
}
.login-ipt-wrap{
    
}
.login-ipt{
    width: 100%;
    padding: 10px 0;
    padding-right: 30px;
    box-sizing: border-box;
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 24px;
    color: #333;
    transition: 0.3s;
}
.login-ipt:focus{
    border-bottom-color: #4a86f6;
}
.login-item-icon{
    background: #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}
.login-item + .login-item{
    margin-top: 20px;
}
.form-flex{
    display: flex;
    justify-content: space-between;
}
.form-check{
    cursor: pointer;
}
.form-check .check-icon{
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    vertical-align: middle;
    position: relative;
}
.form-check .check-icon.on{
    border-color: #4a86f6;
    background: #4a86f6;
}
.form-check .check-icon.on::before {
    position: absolute;
    content: " ";
    width: 4px;
    height: 8px;
    transform: rotate(45deg);
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    top: 2px;
    left: 5px;
}
.form-check .check-label{
    vertical-align: middle;
    font-size: 16px;
    color: #666;
}
.form-forget{
    font-size: 16px;
    color: #4a86f6;
    cursor: pointer;
}
.form-btn{
    margin: 50px 0 40px 0;
    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;
}

::-webkit-input-placeholder{
    color: #999;
}