body{
    margin:0;
    font-family:'Segoe UI',sans-serif;

    background:
        linear-gradient(
            rgba(255,255,255,0.75),
            rgba(255,255,255,0.85)
        ),
        url('../images/bg-login2.jpeg');

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

    overflow-x:hidden;
}

/* WRAPPER */

.login-wrapper{
    position:relative;

    min-height:100vh;

    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:center;

    padding:40px 20px;
}

/* BACKGROUND */

.bg-left,
.bg-right{
    position:absolute;
    top:0;

    width:35%;
    height:100%;

    z-index:0;
}

.bg-left{
    left:0;
    background:url('../images/kopi-left.jpg') center/cover no-repeat;
}

.bg-right{
    right:0;
    background:url('../images/kopi-right.jpg') center/cover no-repeat;
    opacity:.5;
}

/* BACK BUTTON */

.btn-back{
    position:absolute;
    top:25px;
    left:25px;

    z-index:5;

    color:#2e7d32;
    text-decoration:none;

    font-weight:600;
    font-size:15px;
}

/* LOGIN CARD */

.login-card{
    position:relative;
    z-index:2;

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

    background:white;

    border-radius:24px;

    padding:38px 30px;

    text-align:center;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    margin:auto;
}

/* LOGO */

.logo i{
    font-size:42px;
    color:#2e7d32;
}

/* TEXT */

.title{
    margin-top:15px;

    font-size:30px;
    font-weight:700;

    line-height:1.4;

    color:#1f2937;
}

.subtitle{
    margin-top:10px;

    font-size:14px;
    line-height:1.6;

    color:#6b7280;
}

/* DIVIDER */

.divider{
    margin:20px 0;
}

.divider span{
    background:white;
    padding:0 10px;

    color:#2e7d32;
    font-weight:600;
}

/* INPUT */

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

    border:1px solid #d1d5db;
    border-radius:14px;

    padding:12px 14px;

    margin-bottom:16px;

    background:#fff;
}

.input-group-custom input{
    border:none;
    outline:none;

    flex:1;

    font-size:15px;

    background:transparent;
}

.input-group-custom i{
    margin-right:12px;
    color:#2e7d32;
    font-size:16px;
}

/* BUTTON */

.btn-login{
    width:100%;

    border:none;
    border-radius:14px;

    padding:14px;

    background:linear-gradient(90deg,#2e7d32,#1b5e20);

    color:white;

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

    transition:.2s;
}

.btn-login:hover{
    transform:translateY(-1px);
}

/* FOOTER */

.footer-text{
    margin-top:16px;

    font-size:13px;
    color:#6b7280;
}

/* BOTTOM INFO */

.bottom-info{
    position:relative;
    z-index:2;

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

    display:flex;
    justify-content:center;
    align-items:center;

    gap:50px;

    flex-wrap:wrap;

    margin-top:35px;
    padding-bottom:10px;
}

.info-item{
    display:flex;
    align-items:flex-start;

    gap:12px;

    min-width:220px;
}

.info-item i{
    font-size:22px;
    color:#2e7d32;

    margin-top:2px;
}

.info-item h5{
    margin:0 0 4px;

    font-size:18px;
    font-weight:700;

    color:#1f2937;
}

.info-item p{
    margin:0;

    font-size:13px;
    line-height:1.5;

    color:#6b7280;
}

/* =========================
MOBILE RESPONSIVE FIX
========================= */

@media(max-width:768px){

    body{
        overflow-x:hidden;
    }

    .login-wrapper{
        padding:16px;
        gap:16px;
    }

    .login-card{
        width:100%;
        max-width:100%;

        padding:24px 20px;

        border-radius:20px;

        margin-top:40px;
    }

    .logo img{
        width:70px !important;
    }

    .title{
        font-size:18px;
        line-height:1.5;
    }

    .subtitle{
        font-size:13px;
        line-height:1.5;
    }

    .input-group-custom{
        padding:10px 12px;
    }

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

    .btn-login{
        padding:12px;
        font-size:14px;
    }

    .footer-text{
        font-size:12px;
    }

    .bottom-info{
        width:100%;

        flex-direction:column;
        align-items:flex-start;

        gap:14px;

        margin-top:20px;
        padding-bottom:20px;
    }

    .info-item{
        width:100%;
        gap:10px;
    }

    .info-item h5{
        font-size:15px;
    }

    .info-item p{
        font-size:12px;
    }

    .btn-back{
        top:14px;
        left:14px;

        font-size:13px;
    }

    .bg-left,
    .bg-right{
        display:none;
    }

}