@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

    --primary-green:#16A34A;
    --primary-red:#E53935;
    --dark:#0F172A;
    --light:#F8FAFC;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;

    background:
    linear-gradient(
        135deg,
        #f8fafc,
        #ecfdf5
    );

    min-height:100vh;

}

.login-wrapper{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding:30px;

}

.login-card{

    background:#fff;

    border-radius:25px;

    padding:40px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.08);

    border:1px solid #E5E7EB;

}

.login-card h2{

    font-size:32px;

    font-weight:700;

    color:#0F172A;

}

.login-card p{

    color:#64748B;

}

.form-label{

    font-weight:600;

    margin-bottom:8px;

}

.form-control{

    height:50px;

    border-radius:12px;

    border:1px solid #CBD5E1;

}

.form-control:focus{

    border-color:#16A34A;

    box-shadow:none;

}

.input-group .btn{

    border-radius:0 12px 12px 0;

}

.btn-success{

    background:#16A34A;

    border:none;

    height:50px;

    border-radius:12px;

    font-weight:600;

    font-size:16px;

}

.btn-success:hover{

    background:#15803D;

}

.logo-area{

    text-align:center;

    margin-bottom:25px;

}

.logo-area img{

    max-height:70px;

}

.login-side{

    background:
    linear-gradient(
        135deg,
        #16A34A,
        #22C55E
    );

    border-radius:30px;

    min-height:650px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    padding:50px;

}

.login-side-content h1{

    font-size:48px;

    font-weight:800;

    margin-bottom:20px;

}

.login-side-content p{

    font-size:18px;

    opacity:.95;

    line-height:1.8;

}

.feature-list{

    margin-top:30px;

}

.feature-list li{

    margin-bottom:12px;

    font-size:16px;

}

.feature-list i{

    margin-right:10px;

}

.login-footer{

    text-align:center;

    margin-top:25px;

    font-size:14px;

    color:#64748B;

}

.login-footer a{

    color:#16A34A;

    text-decoration:none;

    font-weight:600;

}

.alert{

    border-radius:12px;

}

@media(max-width:991px){

    .login-side{

        display:none;

    }

    .login-card{

        padding:30px;

    }

}

@media(max-width:576px){

    .login-wrapper{

        padding:15px;

    }

    .login-card{

        border-radius:20px;

        padding:25px;

    }

    .login-card h2{

        font-size:28px;

    }

}