*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    min-height:100vh;

    background:
    linear-gradient(
        rgba(0,70,40,.35),
        rgba(0,70,40,.35)
    ),
    url("t.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:20px;
}

/* BOX LOGIN */
.login-box{
    width:100%;
    max-width:390px;

    background:rgba(168, 161, 161, 0.28); /* sedikit lebih gelap */

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    padding:40px 35px;

    border-radius:25px;

    box-shadow:
    0 15px 40px rgb(197, 197, 197),
    inset 0 1px 1px rgb(190, 182, 182);

    text-align:center;
}

/* =====================
   JUDUL HALAMAN DAFTAR
===================== */
.login-box h1{
    color:#fff;
    font-size:40px;
    font-weight:700;
    margin-bottom:5px;
}

.login-box h3{
    color:#f5f5f5;
    font-size:22px;
    font-weight:600;
    margin-bottom:8px;
}

.subtitle{
    color:#f5f5f5;
    margin-bottom:28px;
    font-size:15px;
}

/* =====================
   FORM DAFTAR
===================== */
body{
    overflow-y:auto;
    padding:30px 20px;
}

.login-box{
    margin:30px 0;
}

/* LOGO */
/* LOGO */
.logo{
    width:160px;
    height:auto;
    margin-bottom:10px;
}

/* TOMBOL LOGIN */
button{
    width:100%;
    height:54px;

    border:none;
    border-radius:35px;

    background:#2e7d32;
    color:#fff;

    font-size:17px;
    font-weight:600;

    cursor:pointer;
    transition:.3s;
}

button:hover{
    background:#1b5e20;
}

/* HP */
@media(max-width:576px){
    .logo{
        width:130px;
    }
}

/* JUDUL */
.login-box h2{
    color:#fff;
    font-size:40px;
    font-weight:700;
}

.login-box p{
    color:#f5f5f5;
    margin-bottom:28px;
    font-size:15px;
}

/* INPUT */
.input-box{
    position:relative;
    margin-bottom:18px;
}

.input-box i:first-child{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    color:#2e7d32;
    font-size:17px;
}

/* INPUT TEXT */
.input-box input{
    width:100%;
    height:54px;

    border:none;
    outline:none;

    border-radius:35px;

    background:rgba(255,255,255,.95);

    padding-left:48px;
    padding-right:55px;

    font-size:15px;
}

/* ICON MATA */
.password-box{
    position:relative;
}

.password-box span{
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);

    color:#2e7d32;
    cursor:pointer;
    font-size:18px;

    width:25px;
    height:25px;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* ===== LUPA PASSWORD ===== */
.opsi{
    text-align:right;
    margin:15px 5px 20px 0;
}

.opsi a{
    color:#f5f5f5;
    text-decoration:none;
    font-size:13px;
    transition:.3s;
    position:relative;
}

.opsi a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-2px;
    width:0;
    height:1.5px;
    background:#ffd54f;
    transition:.3s;
}

.opsi a:hover{
    color:#ffd54f;
}

.opsi a:hover::after{
    width:100%;
}


/* ===== DAFTAR AKUN ===== */
.daftar{
    margin-top:18px;
    text-align:center;
    color:#ffffff;
    font-size:14px;
}

.daftar a{
    color:#ffffff;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
    position:relative;
}

.daftar a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-2px;
    width:0;
    height:2px;
    background:#ffd54f;
    transition:.3s;
}

.daftar a:hover{
    color:#ffd54f;
}

.daftar a:hover::after{
    width:100%;
}
/* RESPONSIVE HP */
@media(max-width:576px){

    .login-box{
        padding:35px 25px;
        border-radius:20px;
    }

    .logo{
        width:100px;
    }

    .login-box h2{
        font-size:32px;
    }

    .login-box p{
        font-size:14px;
    }

    .input-box input{
        height:50px;
        font-size:14px;
    }

    button{
        height:50px;
        font-size:16px;
    }
    @media(max-width:576px){

    .login-box h1{
        font-size:32px;
    }

    .login-box h3{
        font-size:18px;
    }

    .subtitle{
        font-size:14px;
    }

}
/* ===== HALAMAN LUPA PASSWORD ===== */

.toggle-eye{
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);

    color:#2e7d32;
    font-size:18px;
    cursor:pointer;
}

/* Judul */
.login-box h1{
    color:#fff;
    font-size:40px;
    margin-bottom:5px;
}

.login-box h3{
    color:#f5f5f5;
    font-size:22px;
    margin-bottom:8px;
}

.subtitle{
    color:#f5f5f5;
    margin-bottom:25px;
    font-size:15px;
}
.admin-box{
    width:100%;
    max-width:390px;

    background:rgba(168,161,161,.28);

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    padding:40px 35px;

    border-radius:25px;

    box-shadow:
    0 15px 40px rgb(197,197,197),
    inset 0 1px 1px rgb(190,182,182);

    text-align:center;
}

.admin-box h2{
    color:#fff;
    font-size:40px;
    font-weight:700;
    margin-bottom:5px;
}

.admin-box .subtitle{
    color:#f5f5f5;
    font-size:15px;
    margin-bottom:10px;
}

.menu-title{
    color:#fff;
    font-size:17px;
    font-weight:600;

    text-align:left;

    margin-top:20px;
    margin-bottom:10px;
}

.menu-btn,
.logout-btn{
    display:block;

    width:100%;

    text-decoration:none;

    padding:16px;

    border-radius:35px;

    font-size:16px;
    font-weight:600;

    transition:.3s;
}

.menu-btn{
    background:#2e7d32;
    color:white;
    margin-bottom:15px;
}

.menu-btn:hover{
    background:#1b5e20;
}

.logout-btn{
    background:#c62828;
    color:white;
    margin-top:25px;
}

.logout-btn:hover{
    background:#b71c1c;
}}

/* =====================
   GALERI FOTO TRACKER
===================== */
.foto-galeri{
    display:flex;
    gap:8px;
    overflow-x:auto;
    margin-top:10px;
    padding-bottom:4px;
}

.foto-item{
    width:70px;
    height:70px;
    border-radius:10px;
    object-fit:cover;
    flex-shrink:0;
    border:1px solid rgba(255,255,255,.1);
}

