*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

/* ================= NO SCROLL DESKTOP ================= */

html, body{
    height:100%;
    overflow:hidden;
    background:#f6f8f3;
}

.login-wrapper{
    height:100vh;
    display:flex;
}

/* ================= LEFT ================= */

.login-left{
    flex:1;
    background:linear-gradient(135deg,#edf7ee,#dff1e2);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:30px;
    position:relative;
    overflow:hidden;
}

.login-left::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(31,122,61,0.08);
    border-radius:50%;
    top:-200px;
    left:-200px;
}

.login-left::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(31,122,61,0.05);
    border-radius:50%;
    bottom:-150px;
    right:-150px;
}

.login-banner{
    width:100%;
    max-width:650px;
    border-radius:25px;
    z-index:2;
    position:relative;
    box-shadow:0 15px 50px rgba(0,0,0,0.08);
}

/* ================= RIGHT ================= */

.login-right{
    flex:1;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px;
    overflow:hidden;
}

.login-card{
    width:100%;
    max-width:480px;
}

.logo-img{
    width:120px;
    margin-bottom:10px;
}

.login-title{
    font-size:40px;
    font-weight:700;
    color:#111827;
}

.login-subtitle{
    font-size:16px;
    color:#6b7280;
    margin-bottom:25px;
}

.form-label{
    font-weight:600;
    margin-bottom:8px;
}

.form-control{
    height:56px;
    border-radius:14px;
    border:1px solid #d9e2d6;
    background:#f7faf7;
}

.form-control:focus{
    border-color:#1F7A3D;
    box-shadow:none;
    background:#fff;
}

.btn-login{
    width:100%;
    height:56px;
    border:none;
    border-radius:14px;
    background:#1F7A3D;
    color:#fff;
    font-size:18px;
    font-weight:600;
}

.btn-login:hover{
    background:#16612f;
}

.forgot-link{
    color:#1F7A3D;
    text-decoration:none;
    font-weight:500;
    font-size:14px;
}

.copyright-text{
    font-size:12px;
    color:#6b7280;
    margin-top:20px;
    text-align:center;
    line-height:20px;
}

/* ================= MOBILE ================= */

@media(max-width:991px){

    html, body{
        overflow:auto;
    }

    .login-wrapper{
        flex-direction:column;
        height:auto;
        min-height:100vh;
    }

    .login-left{
        display:none;
    }

    .login-right{
        min-height:100vh;
        padding:30px 20px;
    }

    .login-title{
        font-size:32px;
    }
}

@media(max-width:576px){

    .login-right{
        padding:20px 15px;
    }

    .login-title{
        font-size:28px;
    }

    .form-control{
        height:52px;
    }

    .btn-login{
        height:52px;
    }
}
