*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Inter,sans-serif;

    background:#EEF2FF;

}

.login-wrapper{

    display:flex;

    min-height:100vh;

}

.login-left{

    width:50%;

    background:linear-gradient(135deg,#2563eb,#3b82f6);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

}

.logo{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#fff;

    color:#2563eb;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:36px;

    font-weight:bold;

    margin:auto;

    margin-bottom:20px;

}

.brand{

    text-align:center;

}

.login-right{

    width:50%;

    display:flex;

    justify-content:center;

    align-items:center;

}

.login-card{

    width:420px;

    background:#fff;

    border-radius:18px;

    padding:40px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.form-control{

    height:50px;

}

.btn-login{

    height:50px;

    font-weight:600;

}

@media(max-width:992px){

.login-left{

display:none;

}

.login-right{

width:100%;

padding:20px;

}

.login-card{

width:100%;

}

}