@font-face {
    font-family: "PoppinsMedium";
    src: url("/fonts/poppins/Poppins-Medium.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

.logo-ief {
    width: 100%;
    max-width: 1200px;
}

.logo-global {
    width: 100%;
    max-width: 1200px;
}

/* Responsive mobile */
@media (max-width: 768px) {
    .logo-ief,
    .logo-global {
        width: 100%;
        max-width: none;
        margin-bottom: 10px;
    }
}
.registration-badge {
    color: white;
    font-weight: 800;
}

.form-label {
    font-family: "PoppinsMedium", sans-serif;
    font-weight: 300;
    color: white;
}

.form-control {
    background-color: white;
    border-radius: 10px;
    padding-inline: 20px;
}

.ticket-card {
    cursor: pointer;
    display: flex;
    padding: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    border-radius: 8px;
    background: whitesmoke;
    border: 1px solid gray;
}

.ticket-card:hover {
    border: 6px solid #cc0000;
}

.ticket-card input[type="checkbox"]:checked + .checkbox-indicator {
    background: #cc0000;
    border-color: #cc0000;
}

.checkbox-indicator {
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-radius: 4px;
    background: white;
    transition: all 0.3s ease;
}

.checkout-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-top: 1px rgba(128, 128, 128, 0.6) solid;
    border-bottom: 1px rgba(128, 128, 128, 0.6) solid;
    padding-inline: 10px;
    padding-block: 5px;
    border-radius: 2px;
}

.checkout-container p {
    flex-grow: 1; /* Membuat elemen <p> melebar */
    margin: 0; /* Menghapus margin default */
}

.checkout-total {
    h4 {
        font-size: 20px;
        font-weight: 300;
        color: #000000;
    }

    p {
        font-weight: 600;
        font-size: 25px;
        color: #000;
    }
}

.order-card {
    border: 1px solid gray;
    border-radius: 10px;
    padding: 15px;
    /* max-width: 400px; */
    margin: auto;
    .divider {
        border-top: 1px solid #999;
        margin: 10px 0;
    }
    .status {
        font-weight: bold;
    }
}

.status-wrapper {
    display: flex;
    justify-content: center;
    padding: 24px;
}

.status-card {
    width: 100%;
    max-width: 380px;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.status-badge {
    display: inline-block;
    background: #d1f3e6;
    color: #0f9d7f;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
}

.qr-box {
    background: #e5e5e5;
    border-radius: 12px;
    padding: 24px;
}

.qr-box img {
    width: 100%;
    max-width: 200px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
}

.info-row span {
    color: #777;
}

.status-link {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    font-size: 13px;
    margin: 16px 0;
}

.btn-primary-outline {
    border: 2px solid #35b6b4;
    background: transparent;
    color: #35b6b4;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
}

.btn-primary-fill {
    background: #35b6b4;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
}

.status-badge.success {
    background: #d1f3e6;
    color: #0f9d7f;
}

.status-badge.warning {
    background: #fff3cd;
    color: #856404;
}

.status-badge.danger {
    background: #f8d7da;
    color: #842029;
}
