/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Segoe UI, Arial, sans-serif;
    margin:0;
    padding:0;
    min-height:100vh;
    overflow-x:hidden;
    background:#f3f4f6;
    position:relative; /* TAMBAHAN */
}

/* HEADER */
.header{
    text-align:center;
    margin-bottom:20px;
    position:relative;  /* TAMBAHAN */
    z-index:1;          /* TAMBAHAN */
}

.header h2{
    font-size:20px;
    color:#333;
}

/* CARD */
.card{
    width:320px;
    background:#fff;
    padding:24px;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    text-align:center;
}
/* ===== FIX FORM SOS ===== */
.card input{
    width:100%;
    padding:12px;
    margin-bottom:12px;
    border-radius:10px;
    border:1px solid #f8bbd0;
    font-size:14px;
}

.card button{
    width:100%;
    padding:12px;
    border:none;
    border-radius:12px;
    background:#e91e63;
    color:#fff;
    font-weight:700;
    cursor:pointer;
}

.card button:hover{
    background:#c2185b;
}

/* FORM */
input, select{
    width:100%;
    padding:12px;
    margin-top:10px;
    font-size:16px;
    border:1px solid #ddd;
    border-radius:8px;
}

button{
    width:100%;
    padding:14px;
    margin-top:14px;
    font-size:16px;
    background:white;
    color:#d63384;
    border:2px solid #f8a8d0;
    border-radius:14px;
    font-weight:600;
    cursor:pointer;
    
    box-shadow:0 6px 15px rgba(214,51,132,0.15);
    transition:all 0.25s ease;
}

/* HOVER */
button:hover{
    background:#d63384;
    color:white;
    border:2px solid #d63384;
    box-shadow:0 10px 20px rgba(214,51,132,0.35);
    transform:translateY(-3px);
}

/* ACTIVE */
button:active{
    transform:translateY(0px);
    box-shadow:0 4px 10px rgba(214,51,132,0.25);
}

/* TABLE MOBILE */
.table{
    width:100%;
    border-collapse:collapse;
    margin-top:10px;
}

.table th, .table td{
    padding:8px;
    border-bottom:1px solid #eee;
    font-size:14px;
}

.text-right{
    text-align:right;
}

.total-box{
    font-size:18px;
    font-weight:bold;
    margin-top:15px;
}

/* BACKGROUND IMAGE LAYER */
body::before{
    content:"";
    position:fixed;
    inset:0;
    background:url('../bg-edt.png') center center / cover no-repeat;
    opacity:0.3;
    z-index:0;
    pointer-events:none; /* ?? INI SOLUSI UTAMA */
}

.wrapper{
    max-width:480px;
    margin:auto;
    padding:15px;
    position:relative; /* TAMBAHAN */
    z-index:1;         /* TAMBAHAN */
}
/* ================= LOGIN PAGE ================= */
body.login-page{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,#ffd1e8,#ffe6f2);
}

/* LOGIN BOX */
.login-box{
    width:320px;
    background:#fff;
    padding:24px;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(255,105,180,.35);
    text-align:center;
}

/* TITLE */
.login-box h2{
    color:#e91e63;
    font-size:22px;
    font-weight:800;
    margin-bottom:5px;
}

.login-box small{
    color:#888;
    display:block;
    margin-bottom:18px;
}

/* INPUT */
.login-box input{
    width:100%;
    padding:12px;
    margin-bottom:12px;
    border-radius:10px;
    border:1px solid #f8bbd0;
}

/* BUTTON */
.login-box button{
    width:100%;
    padding:12px;
    border:none;
    border-radius:4px;
    background:#e91e63;
    color:#fff;
    font-weight:700;
    cursor:pointer;
}



/* LOGO */
.logo-inside {
    width: 90px;
    margin: 0 auto 10px;
    display: block;
    transition: all 0.3s ease; /* Smooth transition */
    
    background-color: transparent; /* Ensure background is transparent */
}

