
.login-container{
    display:flex;
    flex-direction:row;
    flex-wrap:nowrap;
    width:100%;
    min-height:100vh;
}

/* =========================
   LEFT PANEL
========================= */

.left-panel{
   display:flex;
    align-items:flex-start;
    justify-content:flex-start;
    padding:50px 65px 40px;
    overflow:hidden;

    background:
        linear-gradient(
            rgba(248,251,247,.80),
            rgba(248,251,247,.80)
        ),
        url('../images/login-leftpanel-bg.png');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.left-content{
    position:relative;
    z-index:2;
    max-width:480px;
}

.logo{
    width:145px;
    margin-bottom:14px;
}

.system-tag{
    display:inline-block;
    padding:6px 16px;
    border-radius:30px;
    background:#E9F5EA;
    color:#2E7D32;
    font-size:11px;
    padding:5px 14px;
    margin-bottom:18px;
}

.left-panel h1{
    color:#285241;
    font-size:42px;
    font-weight:700;
    line-height:1.15;
    margin-bottom:18px;
}

.description{
    color:#5F6E63;
    font-size:16px;
    line-height:1.55;
    margin-bottom:28px;
    max-width:500px;
}

.feature-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:10px;
    color:#2D3E33;
    font-size:15px;
}

.feature-icon{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#EAF6EB;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#2E7D32;
    font-size:15px;
    flex-shrink:0;
}


/* =========================
   RIGHT PANEL
========================= */

.right-panel{
    flex:1;
    background:#285241;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:25px;
}

.login-card{
    width:450px;
    padding:35px;
    border-radius:24px;

    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.10);
    backdrop-filter:blur(14px);
    box-shadow:0 18px 45px rgba(0,0,0,.22);
}


/* =========================
   HEADER
========================= */

.agency-header{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    margin-bottom:24px;
}

.denr-logo{
    width:70px;
}

.agency-info{
    text-align:left;
}

.agency-info h3{
    color:#fff;
    font-size:20px;
    font-weight:700;
    margin:0;
}

.agency-info p{
    color:#E7F5E8;
    font-size:13px;
    line-height:1.4;
    margin:2px 0;
}

.agency-info span{
    color:#BFDCC0;
    font-size:13px;
}


/* =========================
   LOGIN TITLE
========================= */

.login-header{
    text-align:center;
    margin-bottom:15px;
}

.login-header h2{
    color:#fff;
     font-size:24px;
    font-weight:700;
}

.title-divider{
    width:70px;
    height:4px;
    margin:14px auto;
    border-radius:30px;
    background:#7BC043;
}

.login-header p{
    color:#DCE8DE;
    font-size:14px;
}


/* =========================
   INPUTS
========================= */

.input-group-custom{
    display:flex;
    align-items:center;

    background:#fff;
    border-radius:40px;

    height:50px;
    padding:0 20px;
    margin-bottom:16px;
}

.input-group-custom i{
    color:#4E4E4E;
    width:18px;
    font-size:16px;
}

.input-group-custom input{
    flex:1;
    border:none;
    outline:none;
    background:none;
    margin-left:12px;
    font-size:15px;
}

.toggle-password{
    border:none;
    background:none;
    color:#777;
    cursor:pointer;
    font-size:16px;
}


/* =========================
   OPTIONS
========================= */

.form-options{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:12px 0 22px;
}

.remember{
    display:flex;
    align-items:center;
    gap:6px;
    color:#fff;
    font-size:14px;
}

.form-options a{
    color:#A5D6A7;
    text-decoration:none;
    font-size:14px;
}


/* =========================
   BUTTON
========================= */

.btn-login{
    width:100%;
    height:54px;

    border:none;
    border-radius:40px;

    background:linear-gradient(90deg,#4CAF50,#66BB6A);

    color:#fff;
    font-size:16px;
    font-weight:600;

    transition:.3s;
}

.btn-login:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(0,0,0,.18);
}


/* =========================
   REGISTER
========================= */

.register-section{
    margin-top:24px;
    text-align:center;
    font-size:14px;
}

.register-section span{
    color:#EAEAEA;
}

.register-section a{
    color:#9BE564;
    font-weight:600;
    text-decoration:none;
    margin-left:4px;
}


/* =========================
   FOOTER
========================= */

.login-footer{
    margin-top:28px;
    text-align:center;
    color:#CFE2D1;
    font-size:12px;
}

.login-footer i{
    font-size:20px;
    margin-bottom:8px;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

.login-container{
    flex-direction:column;
}

.left-panel,
.right-panel{
    width:100%;
}

.left-panel{
    min-height:auto;
    padding:45px 30px;
    text-align:center;
}

.left-content{
    max-width:100%;
}

.description{
    max-width:100%;
    margin-left:auto;
    margin-right:auto;
}

.feature-list{
    /* Was `display:inline-flex` with no flex-direction, which silently
       reset the column layout back to a row and made icon+label pairs
       wrap into each other on tablets/phones. */
    display:flex;
    flex-direction:column;
    align-items:center;
}

.feature-item{
    text-align:left;
}

.right-panel{
    padding:30px 15px;
}

.login-card{
    width:100%;
    max-width:430px;
}

}

@media(max-width:576px){

.left-panel{
    padding:36px 20px 30px;
}

.logo{
    width:120px;
}

.left-panel h1{
    font-size:28px;
    margin-bottom:14px;
}

.description{
    font-size:14px;
    margin-bottom:22px;
}

.system-tag{
    font-size:10.5px;
}

.right-panel{
    padding:20px 12px;
}

.login-card{
    padding:26px 20px;
    border-radius:18px;
}

.agency-header{
    gap:10px;
    margin-bottom:20px;
}

.denr-logo{
    width:52px;
}

.agency-info h3{
    font-size:17px;
}

.agency-info p,
.agency-info span{
    font-size:12px;
}

.login-header h2{
    font-size:20px;
}

.input-group-custom{
    height:46px;
    padding:0 16px;
    margin-bottom:14px;
}

.input-group-custom input{
    font-size:14px;
}

.form-options{
    flex-wrap:wrap;
    gap:10px;
    margin:8px 0 18px;
}

.btn-login{
    height:48px;
    font-size:15px;
}

}