*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:
    linear-gradient(rgba(0,0,0,0.5),
    rgba(0,0,0,0.5)),
    url('jepang.jpg');
    background-size:cover;
    background-position:center;

}

.login-box{
    width:380px;
    padding:40px;
    border-radius:20px;
    background:rgba(255,255,255,0.1);
    border:1px solid rgba(255,255,255,0.2);
    box-shadow:0 8px 32px rgba(0,0,0,0.3);
    color:white;
    animation:fade 1s ease;
}

@keyframes fade{
    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

.login-box h2{
    text-align:center;
    margin-bottom:10px;
    font-size:32px;
}

.login-box p{
    text-align:center;
    margin-bottom:30px;
    font-size:14px;
    opacity:0.8;
}

.input-box{
    margin-bottom:20px;
}

.input-box input{
    width:100%;
    padding:14px;
    border:none;
    outline:none;
    border-radius:10px;
    background:rgba(255,255,255,0.2);
    color:white;
    font-size:15px;
    transition:0.3s;
}

.input-box input::placeholder{
    color:#ddd;
}

.input-box input:focus{
    background:rgba(255,255,255,0.3);
}

.login-btn{
    width:100%;
    padding:14px;
    border:none;
    border-radius:10px;
    background:linear-gradient(45deg,#8B4513,#C97B36);
    color:white;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
    font-weight:600;
}

.login-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,0.3);
}

.footer{
    text-align:center;
    margin-top:20px;
    font-size:13px;
    opacity:0.7;
}

body{
    font-family: Arial;
    margin: 0;
    padding: 0;
    background: url('jepang.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.login{
    width: 350px;
    margin: 100px auto;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: white;
}

input{
    width: 100%;
    padding: 15px;
    margin-top: 15px;
    border-radius: 10px;
    border: none;
}

button{
    width: 100%;
    padding: 15px;
    margin-top: 15px;
    background: chocolate;
    border: none;
    color: white;
    border-radius: 10px;
}

/* DASHBOARD */

.dashboard{
    width: 90%;
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    color: white;
}

.dashboard h2{
    text-align: center;
    margin-bottom: 20px;
    font-size: 40px;
}

.dashboard p{
    font-size: 22px;
    margin-bottom: 20px;
}

.menu{
    margin-bottom: 30px;
}

.menu a{
    text-decoration: none;
    padding: 12px 20px;
    background: linear-gradient(45deg,#8B4513,#C97B36);
    color: white;
    border-radius: 10px;
    margin-right: 10px;
    transition: 0.3s;
}

.menu a:hover{
    opacity: 0.8;
}

table{
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.1);
    overflow: hidden;
    border-radius: 10px;
}

table th{
    background: rgba(255,255,255,0.2);
    padding: 15px;
    color: white;
}

table td{
    padding: 12px;
    text-align: center;
    color: white;
}

h3{
    margin-bottom: 20px;
    color: white;
}
.btn-wa {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 20px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
}

.btn-wa:hover {
    background: #1da851;
}
.btn-pelanggan,
.btn-kembali,
.menu-btn {
    display: inline-block;
    padding: 10px 15px;
    margin: 5px;
    background: #c76b1d;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

.btn-pelanggan:hover,
.btn-kembali:hover,
.menu-btn:hover {
    background: #e8892e;
}