html, body{
    width:100%;
    height: 100%;
    margin:0;
    padding:0;
    background-image: url(/assets/img/login/bg-01.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.login-box{
    position: absolute;
    left: 50%;
    top:50%;
    background-color: #fff;
    border-radius: 10px;
    padding:65px 55px;
    transform: translate(-50%, -50%);
    width:calc(100% - 20px);
    max-width: 500px;
}

.login-box h1{
    text-align: center;
    font-weight: 900;
    font-weight: 38px;
}
.login-box > div{
    position: relative;
}
.login-box > div:nth-child(2),
.login-box > div:nth-child(3){
    margin-bottom: 24px;
}
.login-box > div > span{
    display: block;
    font-size:14px;
}
.login-box > div > input[type=text],
.login-box > div > input[type=password] {
    width: 100%;
    height:55px;
    border:0;
    border-bottom:2px solid #d9d9d9;
    padding-left:40px;
    font-weight: 600;
    

}
.login-box > div::after{
    font-family: remixicon !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    left: 10px;
    bottom: 16px;
    font-size: 20px;
    color: var(--action-color);
}
.login-box > div:nth-child(2)::after{
    content: "\f264";
}
.login-box > div:nth-child(3)::after{
    content:"\eecc";
}

.login-box button{
    padding: 0 20px;
    width: 100%;
    height: 50px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, rgb(132 90 223 / .5), rgb(35 183 229 / .5));
    border: 0;
    margin-top: 50px;
    border-radius: 25px;
}

.login-box input[type="checkbox"]+label::before{
    font-size: 20px;
}