*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: Inter;
}
body{
    font-size: 22px;
    user-select: none;
}
.container{
    display: flex;
    min-height: 100vh;
}
.l-side{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.login-form{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.login-form > h1{
    margin: 30px 0;
}
.login-form > span{
    background-color: #F0EDFF;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px 14px;
    margin: 10px 0;
}
.login-form > span > input{
    background-color: #F0EDFF;
    border: none;
    width: 300px;
    height: 50px;
    color: #1C1C1C;
    font-weight: 500;
    margin-left: 10px;
    outline: none;
}
.login-form > span > input::placeholder{
    color: #1c1c1c49;
    font-weight: 500;
}
.login-form > button{
    width: 124px;
    height: 54px;
    margin: 40px 0;
    border-radius: 16px;
    font-weight: 600;
    color: #fff;
    border: none;
    cursor: pointer;
    background: rgb(145,129,244);
    background: linear-gradient(323deg, rgba(145,129,244,1) 0%, rgba(80,56,237,1) 99%);
}
.login-form > button:hover{
    background: linear-gradient(323deg, rgba(80,56,237,1) 0%, rgba(145,129,244,1) 99%);
}
.other-account{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    color: #ccc;
}
.account{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.account > div{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #1c1c1c38;
    width: 357.25px;
    height: 54px;
    margin: 10px 0;
    border-radius: 16px;
    cursor: pointer;
    transition: 0.2s;
}
.account > div:hover{
    border: 1px solid rgba(80,56,237,1);
}
.account > div > img{
    width: 30px;
    margin-right: 10px;
}
.account > div > h4{
    margin: 0 5px;
}
.r-side{
    display: block;
    width: 50%;
    background: linear-gradient(323deg, rgba(145,129,244,1) 0%, rgba(80,56,237,1) 99%);
}
.pattern{
    background-image: url("./assets/backpattern.png");
    background-size: cover;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}
.box{
    width: 412px;
    height: 524px;
    border-radius: 46px;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2); 
    background-color: rgba(255, 255, 255, 0.274);
    backdrop-filter: blur(13.6px);
    z-index: 2;
}
.box > h2{
    color: #fff;
    width: 260px;
    padding: 20px 40px;
    line-height: 50px;
    font-weight: 600;
}
.box > img{
    position: absolute;
    bottom: 0;
    right: -55px;
    width: 700px;
}
.layer{
    min-height: 100vh;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    background-color: #ffffff38;
    z-index: 1;
}
@media screen and (max-width: 1048px) {
    .box > img{
        right: -10px;
        width: 550px;
    }
}
@media screen and (max-width: 860px) and (max-height: 1024px) {
    .r-side{
        display: none;
    }
    .container{
        justify-content: center;
        align-items: center;
    }
}
.light{
    width: 80px;
    height: 80px;
    background-color: #fff;
    position: absolute;
    bottom: 100px;
    left: -40px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.light > img{
    width: 50px;
    transition: .2s;
}
.light > img:hover{
    width: 60px;
}