:root{
    --primary:#2e7d32;
    --primary-dark:#1b4332;
    --secondary:#66bb6a;
    --accent:#dcedc8;

    --bg:#f5faf6;
    --white:#ffffff;

    --text:#374151;
    --muted:#6b7280;

    --border:#e5e7eb;

    --shadow:
    0 25px 60px rgba(0,0,0,.08);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--bg);
    min-height:100vh;
    overflow-x:hidden;
    color:var(--text);
}

.background-shape{
    position:fixed;
    border-radius:50%;
    z-index:-1;
}

.shape-1{
    width:500px;
    height:500px;
    background:#dcedc8;
    top:-200px;
    left:-120px;
}

.shape-2{
    width:600px;
    height:600px;
    background:#e8f5e9;
    bottom:-250px;
    right:-200px;
}

.login-page{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px;
}

.login-container{

    width:100%;
    max-width:1200px;

    min-height:720px;

    background:white;

    border-radius:30px;

    overflow:hidden;

    display:grid;

    grid-template-columns:1fr 1fr;

    box-shadow:var(--shadow);
}

.login-hero{

    background:
    linear-gradient(
    rgba(27,67,50,.85),
    rgba(27,67,50,.85)
    ),

    url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?auto=format&fit=crop&w=1600&q=80');

    background-size:cover;
    background-position:center;

    color:white;

    padding:60px;

    display:flex;
    align-items:center;
}

.hero-content{
    max-width:500px;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;

    font-size:1.2rem;
    font-weight:600;

    margin-bottom:40px;
}

.leaf{
    font-size:1.5rem;
}

.login-hero h1{

    font-family:'Playfair Display',serif;

    font-size:3.2rem;

    line-height:1.15;

    margin-bottom:25px;
}

.login-hero p{

    font-size:1.05rem;

    opacity:.9;

    margin-bottom:40px;
}

.hero-features{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.feature{
    display:flex;
    gap:12px;
    align-items:center;
}

.feature span{
    color:#b7ffb7;
    font-weight:bold;
}

.login-form-section{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:60px;
}

.form-card{
    width:100%;
    max-width:420px;
}

.mobile-logo{
    display:none;
}

.form-card h2{
    color:var(--primary-dark);
    font-size:2rem;
    margin-bottom:8px;
}

.subtitle{
    color:var(--muted);
    margin-bottom:35px;
}

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

.input-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.input-group input{

    width:100%;

    padding:15px 18px;

    border:1px solid var(--border);

    border-radius:14px;

    font-size:15px;

    transition:.3s;
}

.input-group input:focus{
    outline:none;
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(46,125,50,.15);
}

.password-wrapper{
    position:relative;
}

.password-wrapper input{
    padding-right:55px;
}

.toggle-password{

    position:absolute;

    right:15px;
    top:50%;

    transform:translateY(-50%);

    border:none;
    background:none;

    cursor:pointer;

    font-size:18px;
}

.form-options{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

    font-size:14px;
}

.remember{
    display:flex;
    gap:8px;
    align-items:center;
}

.form-options a{
    color:var(--primary);
    text-decoration:none;
}

.login-btn{

    width:100%;

    border:none;

    padding:16px;

    border-radius:14px;

    background:var(--primary);

    color:white;

    font-size:16px;
    font-weight:600;

    cursor:pointer;

    transition:.3s;
}

.login-btn:hover{

    background:var(--primary-dark);

    transform:translateY(-2px);
}

.divider{

    margin:35px 0;

    text-align:center;

    position:relative;
}

.divider span{

    background:white;

    padding:0 15px;

    color:var(--muted);

    position:relative;
    z-index:2;
}

.divider::before{

    content:'';

    position:absolute;

    width:100%;
    height:1px;

    background:var(--border);

    left:0;
    top:50%;
}

.social-buttons{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:15px;
}

.social-btn{

    border:1px solid var(--border);

    background:white;

    padding:15px;

    border-radius:14px;

    cursor:pointer;

    font-weight:600;

    transition:.3s;
}

.social-btn:hover{
    background:#f7faf7;
}

.register-link{

    text-align:center;

    margin-top:30px;

    color:var(--muted);
}

.register-link a{

    color:var(--primary);

    text-decoration:none;

    font-weight:600;
}

@media(max-width:992px){

    .login-container{
        grid-template-columns:1fr;
    }

    .login-hero{
        display:none;
    }

    .mobile-logo{
        display:block;

        text-align:center;

        font-weight:700;

        color:var(--primary);

        margin-bottom:25px;

        font-size:1.2rem;
    }

    .login-form-section{
        padding:40px 30px;
    }
}

@media(max-width:480px){

    .login-page{
        padding:15px;
    }

    .form-options{
        flex-direction:column;
        gap:12px;
        align-items:flex-start;
    }

    .social-buttons{
        grid-template-columns:1fr;
    }
}