*{
    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%;
    background:
    linear-gradient(rgba(2,27,78,0.92), rgba(2,27,78,0.92)),
    url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?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;
}

.brand-content{
    max-width:500px;
}

.brand-logo{
    width:180px;
    background:#fff;
    padding:15px;
    border-radius:25px;
    margin-bottom:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.brand-content h1{
    font-size:3rem;
    font-weight:800;
    margin-bottom:20px;
}

.brand-content p{
    font-size:1.1rem;
    color:#dbe5ff;
    line-height:1.8;
    margin-bottom:30px;
}

.brand-features{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.feature-item{
    font-size:1rem;
    font-weight:500;
}

.feature-item i{
    color:#ffc107;
    margin-right:10px;
}

/* RIGHT SIDE */
.login-right{
    width:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px;
    background:#f4f7fc;
}

.login-card{
    width:100%;
    max-width:460px;
    background:#fff;
    border-radius:30px;
    padding:45px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.login-card h2{
    color:#021b4e;
}

/* INPUTS */
.form-label{
    font-weight:600;
    margin-bottom:8px;
}

.input-group{
    border-radius:14px;
    overflow:hidden;
    border:1px solid #dbe2ef;
}

.input-group-text{
    background:#f7f9fc;
    border:none;
    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;
    font-size:1rem;
    transition:0.3s;
}

.login-btn:hover{
    transform:translateY(-3px);
    color:#fff;
}

/* LINKS */
.back-home{
    text-decoration:none;
    color:#021b4e;
    font-weight:600;
}

.back-home:hover{
    color:#0b5ed7;
}

/* ALERT */
.alert{
    border-radius:14px;
}

/* AUTO 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);
    }

}

/* MOBILE */
@media(max-width:992px){

    .login-left{
        display:none;
    }

    .login-right{
        width:100%;
        padding:20px;
    }

    .login-card{
        padding:35px 25px;
    }

}