*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

body{
    background:#f4f5f7;
    height:100vh;
    overflow:hidden;
}

.main-wrapper{
    width:100%;
    height:100vh;
    display:flex;
}

/* LEFT SIDE */
.left-side {
    width:60%;
    background:url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=1974&auto=format&fit=crop') center center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.left-side2 {
    width:60%;
    background:url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?q=80&w=2070&auto=format&fit=crop') center center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}


.left-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

.left-content{
    position:relative;
    z-index:2;
    color:#fff;
    text-align:center;
    padding:40px;
}

.left-content h1{
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
    color: #0dfd6a;
}

.left-content p{
    font-size:22px;
    line-height:1.7;
    max-width:600px;
    margin:auto;
    opacity:0.9;
    color: #fff;
}

/* RIGHT SIDE */
.right-side{
    width:40%;
    background:#eefbf9;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px;
}

.login-container{
    width:100%;
    max-width:420px;
}

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

.logo img{
    width:180px;
}

.card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    border:1px solid #ececec;
}

.card h2{
    text-align:center;
    font-size:34px;
    margin-bottom:30px;
    color:#222;
    font-weight:600;
}

.form-group{
    margin-bottom:20px;
}

.form-control{
    width:100%;
    height:55px;
    border:1px solid #dcdcdc;
    border-radius:12px;
    padding:0 18px;
    font-size:15px;
    transition:0.3s;
    outline:none;
    background:#fafafa;
}

.form-control:focus{
    border-color:#0d6efd;
    background:#fff;
    box-shadow:0 0 0 4px rgba(13,110,253,0.1);
}

.btn{
    width:100%;
    height:55px;
    border:none;
    border-radius:12px;
    background:#0d6efd;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.btn:hover{
    background:#0b5ed7;
}

.top-link{
    text-align:right;
    margin-bottom:15px;
}

.top-link a{
    text-decoration:none;
    color:#0d6efd;
    font-size:14px;
    font-weight:500;
}

.company-name{
    text-align:center;
    font-size:36px;
    margin-bottom:25px;
    color:#222;
    font-weight:600;
}

.divider{
    margin:30px 0;
    text-align:center;
    position:relative;
}

.divider span{
    background:#fff;
    padding:0 15px;
    position:relative;
    z-index:2;
    color:#888;
    font-size:14px;
}

.divider:before{
    content:'';
    position:absolute;
    left:0;
    top:50%;
    width:100%;
    height:1px;
    background:#e5e5e5;
}

@media(max-width:991px){

    .left-side{
        display:none;
    }
    .left-side2 {
        display:none;
    }

    .right-side{
        width:100%;
    }

    body{
        overflow:auto;
    }
}