/* ==========================================
   LOGIN SIPEGGI V3
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    background:
    radial-gradient(circle at top left,rgba(76,175,80,.18),transparent 35%),
    radial-gradient(circle at bottom right,rgba(102,187,106,.18),transparent 35%),
    linear-gradient(135deg,#EEF9EE,#DDF3DD);

    overflow-x:hidden;

}

/* CARD */

.login-wrapper{

    width:1150px;

    max-width:95%;

    min-height:680px;

    display:flex;

    background:#fff;

    border-radius:30px;

    overflow:hidden;

    box-shadow:0 25px 70px rgba(0,0,0,.18);

    animation:fadeUp .8s ease;

    backdrop-filter:blur(10px);

    transition:.35s;

}

.login-wrapper:hover{

    transform:translateY(-3px);

}

/* ===========================
   PANEL KIRI
=========================== */

.login-left{

    width:45%;

    min-height:720px;

    position:relative;

    overflow:hidden;

    background:
        linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)),
        url("../img/login-banner.png");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

/* efek glow */

.login-left::before{

    content:"";

    position:absolute;

    width:380px;

    height:380px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-150px;

    left:-130px;

}

.login-left::after{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    right:-100px;

    bottom:-80px;

}


/* animasi */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/* ==========================
RIGHT
========================== */

.login-right{

    width:52%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding:70px;

}

.welcome{

    display:inline-block;

    color:#2E7D32;

    font-size:15px;

    font-weight:600;

    margin-bottom:10px;

}

.login-right h2{

    font-size:44px;

    font-weight:700;

    margin-bottom:10px;

    color:#1E293B;

}

.subtitle{

    color:#64748B;

    font-size:15px;

    margin-bottom:35px;

}

.form-label{

    font-weight:500;

}

.form-control{

    height:58px;

    border-radius:16px;

    border:1px solid #DDE5EC;

    padding-left:18px;

    transition:.3s;

    font-size:15px;

}

.form-control:focus{

    border-color:#2E7D32;

    box-shadow:0 0 0 .2rem rgba(46,125,50,.15);

}

.form-control:hover{

    border-color:#66BB6A;

}

.input-group-text{

    border-radius:16px 0 0 16px;

    border:1px solid #DDE5EC;

    background:#fff;

    color:#2E7D32;

}

.input-group button{

    border-radius:0 16px 16px 0;

    border:1px solid #DDE5EC;

    background:white;

}

.btn-login{

    width:100%;

    height:60px;

    border:none;

    border-radius:16px;

    background:linear-gradient(135deg,#2E7D32,#43A047);

    color:white;

    font-size:17px;

    font-weight:600;

    letter-spacing:.5px;

    transition:.35s;

    box-shadow:0 10px 25px rgba(46,125,50,.25);

}

.btn-login:hover{

    transform:translateY(-3px);

    box-shadow:0 20px 35px rgba(46,125,50,.35);

}

.copyright{

    margin-top:35px;

    text-align:center;

    color:#94A3B8;

    font-size:14px;

}

/* ==========================================
   PANEL KIRI — OVERLAY & KONTEN
========================================== */

.login-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        rgba(25,135,84,.45),
        rgba(25,135,84,.60)
    );

}

/* ==========================================
   LANGKAH 8 — EFEK GELOMBANG
========================================== */

.wave{

    position:absolute;

    bottom:0;

    left:0;

    width:100%;

    height:140px;

    background:linear-gradient(
        transparent,
        rgba(255,255,255,.08)
    );

}

@media(max-width:992px){

.login-wrapper{

flex-direction:column;

}

.login-left{

width:100%;

}

.login-right{

width:100%;

padding:40px;

}

.login-right h2{

font-size:36px;

}

.login-left::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    top:-120px;

    left:-120px;

}

.login-left::after{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    bottom:-100px;

    right:-80px;

}



}