body{
    margin:0;
    font-family:'Inter',sans-serif;
}

/* LAYOUT */
.login-wrapper{
    display:flex;
    height:100vh;
}

/* LEFT */
.login-left{
    width:50%;
    background: linear-gradient(135deg,#161A3A,#8E2A8F);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}
.brand-box{
    text-align:center;
    max-width:350px;
}

/* RIGHT */
.login-right{
    width:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f5f6fa;
}

/* CARD */
.login-card{
    background:#fff;
    padding:30px;
    border-radius:16px;
    width:340px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* INPUT */
input{
    border-radius:10px !important;
}

/* BUTTON */
.btn-primary-custom{
    background:linear-gradient(135deg,#8E2A8F,#C77BA8);
    color:#fff;
    border:none;
    border-radius:10px;
    padding:10px;
}

/* PASSWORD */
.password-box{
    position:relative;
}
.password-box i{
    position:absolute;
    right:15px;
    top:12px;
    cursor:pointer;
}

/* MOBILE */
@media(max-width:768px){

    .login-wrapper{
        flex-direction:column;
    }

    .login-left{
        width:100%;
        height:40%;
    }

    .login-right{
        width:100%;
        height:60%;
    }
}