*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#f4f7fc;
    height:100vh;
    overflow:hidden;
}

.login-container{
    display:flex;
    width:100%;
    height:100vh;
}

/*
|--------------------------------------------------------------------------
| LEFT SIDE
|--------------------------------------------------------------------------
*/

.left-side{
    width:50%;
    background:linear-gradient(135deg,#0d6efd,#00c6ff);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    position:relative;
    overflow:hidden;
    padding:50px;
}

.left-side::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,0.1);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.left-side::after{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,0.1);
    border-radius:50%;
    bottom:-100px;
    left:-100px;
}

.left-content{
    position:relative;
    z-index:2;
    text-align:center;
}

.left-content i{
    font-size:80px;
    margin-bottom:25px;
}

.left-content h1{
    font-size:48px;
    font-weight:bold;
    margin-bottom:20px;
}

.left-content p{
    font-size:18px;
    line-height:30px;
    max-width:500px;
}

/*
|--------------------------------------------------------------------------
| RIGHT SIDE
|--------------------------------------------------------------------------
*/

.right-side{
    width:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#fff;
}

.login-card{
    width:100%;
    max-width:450px;
    padding:40px;
}

.logo{
    text-align:center;
    margin-bottom:30px;
}

.logo h2{
    font-weight:bold;
    margin-top:10px;
}

.logo p{
    color:#6c757d;
}

.logo i{
    font-size:60px;
    color:#0d6efd;
}

.form-control,
.form-select{
    height:55px;
    border-radius:12px;
    border:1px solid #dee2e6;
}

.input-group-text{
    border-radius:12px 0 0 12px;
}

.form-label{
    font-weight:600;
}

.btn-login{
    height:55px;
    border-radius:12px;
    font-size:18px;
    font-weight:bold;
}

.role-box{
    background:#f8f9fa;
    padding:15px;
    border-radius:15px;
    border:1px solid #e9ecef;
    margin-bottom:20px;
}

.alert{
    border-radius:12px;
}

.footer-text{
    text-align:center;
    margin-top:20px;
    color:#999;
    font-size:14px;
}

/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media(max-width:991px){

    .left-side{
        display:none;
    }

    .right-side{
        width:100%;
    }

    body{
        overflow:auto;
    }
}
