<style>
body{
    background: #f4f6f9;
    overflow-x: hidden;
}

.login-page{
    min-height: 100vh;
}

.login-left{
    background:
    linear-gradient(rgba(35,35,35,0.70), rgba(35,35,35,0.75)),
    url('https://images.unsplash.com/photo-1584515933487-779824d29309?q=80&w=1400&auto=format&fit=crop');

    background-size: cover;
    background-position: center;
    min-height: 100vh;
    position: relative;
}

.login-overlay{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 80px;
}

.login-content{
    color: #fff;
    max-width: 650px;
}

.login-content h1{
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.login-content h1 span{
    display: block;
    color: #ffcf99;
}

.login-content p{
    font-size: 16px;
    line-height: 30px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
}

.login-features{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.feature-box{
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    padding: 15px 20px;
    border-radius: 14px;
    min-width: 240px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-box i{
    font-size: 20px;
    color: #ffcf99;
}

.feature-box span{
    font-size: 14px;
    font-weight: 500;
}

.login-right{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 40px;
}

.login-card{
    width: 100%;
    max-width: 420px;
}

.login-logo{
    height: 70px;
    margin-bottom: 20px;
}

.login-card h2{
    font-size: 30px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.login-card p{
    color: #777;
    font-size: 14px;
}

.form-group{
    margin-bottom: 22px;
}

.form-group label{
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.login-input-group .input-group-text{
    background: #fff;
    border-right: 0;
    border-radius: 25px 0 0 25px;
    padding-left: 18px;
}

.login-input-group .form-control{
    border-left: 0;
    height: 50px;
    border-radius: 0 25px 25px 0;
    font-size: 13px;
}

.login-input-group .form-control:focus{
    box-shadow: none;
}

.forgot-link{
    font-size: 13px;
    color: #7d3d2f;
    font-weight: 500;
    text-decoration: none;
}

.login-btn{
    width: 100%;
    height: 50px;
    border-radius: 30px;
    background: #7d3d2f;
    border: none;
    font-size: 15px;
    font-weight: 600;
}

.login-btn:hover{
    background: #6c3124;
}

.custom-control-label{
    font-size: 13px;
}

@media(max-width:991px){

    .login-left{
        display:none;
    }

    .login-right{
        padding: 30px;
    }

}
</style>