*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Segoe UI', sans-serif;
    min-height:100vh;
    background:#f4f7fc;
}

/* WRAPPER */
.login-wrapper{
    display:flex;
    min-height:100vh;
}

/* LEFT SIDE */
.login-left{
    width:50%;
    position:relative;
    background:
    linear-gradient(rgba(2,27,78,0.88), rgba(2,27,78,0.88)),
    url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?q=80&w=1400&auto=format&fit=crop');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:60px;
    color:#fff;
}

.left-content{
    position:relative;
    z-index:2;
    max-width:500px;
}

.logo{
    width:170px;
    background:#fff;
    padding:15px;
    border-radius:25px;
    margin-bottom:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.left-content h1{
    font-size:3rem;
    font-weight:800;
    margin-bottom:20px;
}

.left-content p{
    color:#dbe5ff;
    line-height:1.8;
    margin-bottom:30px;
    font-size:1.05rem;
}

.feature-list{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.feature-item{
    font-size:1rem;
    font-weight:500;
}

.feature-item i{
    margin-right:10px;
    color:#ffc107;
}

/* RIGHT SIDE */
.login-right{
    width:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px;
}

.login-card{
    width:100%;
    max-width:450px;
    background:#fff;
    padding:45px;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.login-card h2{
    color:#021b4e;
    font-weight:700;
}

/* INPUTS */
.form-label{
    font-weight:600;
    margin-bottom:8px;
}

.input-group{
    border:1px solid #dbe2ef;
    border-radius:14px;
    overflow:hidden;
}

.input-group-text{
    border:none;
    background:#f8f9fc;
    color:#021b4e;
}

.form-control{
    border:none;
    height:55px;
    box-shadow:none !important;
}

.form-control:focus{
    box-shadow:none;
}

/* BUTTON */
.login-btn{
    height:55px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#021b4e,#0b5ed7);
    color:#fff;
    font-weight:600;
    transition:0.3s;
}

.login-btn:hover{
    transform:translateY(-3px);
    color:#fff;
}

/* BACK */
.back-home{
    text-decoration:none;
    color:#021b4e;
    font-weight:600;
}

.back-home:hover{
    color:#0b5ed7;
}

/* ALERT */
.alert{
    border-radius:14px;
}

/* SWING */
.auto-swing{
    animation:swing 4s ease-in-out infinite;
    transform-origin:top center;
}

@keyframes swing{

    0%{
        transform:rotate(0deg);
    }

    25%{
        transform:rotate(2deg);
    }

    50%{
        transform:rotate(0deg);
    }

    75%{
        transform:rotate(-2deg);
    }

    100%{
        transform:rotate(0deg);
    }

}

.swal2-timer-progress-bar{
    background: currentColor !important;
    opacity: 0.8;
}

/* MOBILE */
@media(max-width:992px){

    .login-left{
        display:none;
    }

    .login-right{
        width:100%;
        padding:20px;
    }

    .login-card{
        padding:35px 25px;
    }

}