.asn-login-page{
    background:#f5f7fb;
    padding:80px 20px;
    min-height:700px;
}

.asn-login-container{
    max-width:1400px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.2fr 520px;
    gap:60px;
    align-items:center;
}

.asn-login-showcase{
    padding-right:40px;
}

.asn-login-badge{
    display:inline-block;
    background:#0d7c32;
    color:#fff;
    padding:10px 18px;
    border-radius:40px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.asn-login-showcase h1{
    font-size:56px;
    line-height:1.1;
    margin-bottom:25px;
    color:#101828;
}

.asn-login-showcase p{
    font-size:18px;
    line-height:1.8;
    color:#667085;
    max-width:700px;
}

.asn-login-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:40px;
}

.asn-stat-card{
    background:#fff;
    padding:25px;
    border-radius:16px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.asn-stat-card strong{
    display:block;
    font-size:30px;
    color:#0d7c32;
}

.asn-stat-card span{
    color:#667085;
}

.asn-login-features{
    margin-top:40px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    font-weight:600;
    color:#1d2939;
}

.asn-login-card{
    background:#fff;
    padding:45px;
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.asn-login-card h2{
    text-align:center;
    margin-bottom:10px;
    font-size:42px;
}

.asn-login-subtitle{
    text-align:center;
    color:#667085;
    margin-bottom:30px;
}

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

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

.asn-form-group input{
    width:100%;
    height:56px;
    border:1px solid #d0d5dd;
    border-radius:12px;
    padding:0 16px;
}

.asn-form-remember{
    margin-bottom:25px;
}

.asn-login-button{
    width:100%;
    border:none;
    height:58px;
    background:#0d7c32;
    color:#fff;
    font-size:18px;
    font-weight:700;
    border-radius:12px;
    cursor:pointer;
}

.asn-login-button:hover{
    background:#096127;
}

.asn-login-links{
    display:flex;
    justify-content:space-between;
    margin-top:25px;
}

.asn-login-links a{
    color:#0d7c32;
    font-weight:600;
    text-decoration:none;
}

.asn-login-security{
    margin-top:30px;
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    justify-content:center;
    font-size:13px;
    color:#667085;
}

.asn-login-error{
    background:#fff0f0;
    color:#c62828;
    border:1px solid #ffcaca;
    padding:15px;
    border-radius:10px;
    margin-bottom:20px;
}

@media(max-width:991px){

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

    .asn-login-showcase{
        display:none;
    }

    .asn-login-card{
        padding:30px;
    }

    .asn-login-card h2{
        font-size:34px;
    }
}
