body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #e8f5e9, #c8e6c9);
}

.container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-img {
    width: 300px;
    margin-bottom: 20px;
    animation: fadeIn 1s ease;
}

.search-box {
    display: flex;
    width: 90%;
    max-width: 450px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    border: 2px solid #a5d6a7; /* tambah border hijau lembut */
}

.search-box input {
    flex: 1;
    padding: 15px;
    border: none;
    outline: none;
}

.search-box button {

    padding: 15px 20px;
    border: none;
    background: #2e7d32;
    color: white;
}

.qr-btn {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    background: #66bb6a;
    color: white;
    cursor: pointer;
}

.card {
    margin-top: 30px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 90%;
    max-width: 500px;
}

.fade-in {
    animation: fadeIn 1s ease;
}

.not-found {
    margin-top: 20px;
    color: red;
}

.bg span {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(76, 175, 80, 0.3);
    animation: animate 10s linear infinite;
    bottom: -150px;
    border-radius: 50%;
}

.bg span:nth-child(1){left:10%}
.bg span:nth-child(2){left:30%}
.bg span:nth-child(3){left:50%}
.bg span:nth-child(4){left:70%}
.bg span:nth-child(5){left:90%}

@keyframes animate {
    0% {transform: translateY(0); opacity:1}
    100% {transform: translateY(-1000px); opacity:0}
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* BADGE STATUS */
.badge {
    padding: 5px 12px;
    border-radius: 20px;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.badge-success {
    background: #2e7d32;
}

.badge-pending {
    background: #f9a825;
}
    to { opacity: 1; transform: translateY(0); }

