.webinar-wrapper {
    font-family: 'Poppins', sans-serif;
    max-width: 480px;
    margin: 20px auto;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Judul Webinar */
.webinar-wrapper h2 {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* ✅ Gambar Flyer (khusus) */
.webinar-flyer {
    display: block;
    margin: 0 auto 20px auto;
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    border-radius: 12px;
}

/* Responsive */
@media (min-width: 768px) {
    .webinar-wrapper {
        max-width: 600px;
    }
    .webinar-flyer {
        max-height: 600px;
    }
}

@media (max-width: 480px) {
    .webinar-flyer {
        max-height: 300px;
    }
}

/* Form Fields */
.webinar-wrapper form .field {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.webinar-wrapper form .field span {
    margin-right: 8px;
    font-size: 18px;
}

.webinar-wrapper form input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
}

/* Tombol Submit */
.webinar-wrapper button {
    width: 100%;
    background-color: #22c55e;
    color: white;
    padding: 14px;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}
.webinar-wrapper button:hover {
    background-color: #16a34a;
}

/* Alert Box */
.alert.success,
.alert.error {
    padding: 10px 15px;
    border-radius: 6px;
    margin-top: 10px;
    font-weight: 500;
}
.alert.success {
    background: #d1fae5;
    color: #065f46;
}
.alert.error {
    background: #fee2e2;
    color: #b91c1c;
}

/* Badge Peserta */
.badge-peserta {
    background-color: #f3f4f6;
    color: #1f2937;
    padding: 10px 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 15px;
}

/* Countdown Timer */
.webinar-countdown {
    font-size: 16px;
    text-align: center;
    margin: 15px 0;
    font-weight: 500;
    color: #2563eb;
}

/* Jika Penuh */
.full-msg {
    text-align: center;
    color: #dc2626;
    font-weight: bold;
    margin: 20px 0;
}

/* Catatan sebelum daftar peserta */
.webinar-note {
    background-color: #fef9c3;
    color: #92400e;
    border: 1px dashed #facc15;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 15px;
    margin: 25px 0 10px;
    text-align: center;
    line-height: 1.5;
}

/* Scroll daftar peserta */
.peserta-scroll {
    max-height: 220px;
    overflow-y: auto;
    background: #f9fafb;
    padding: 10px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-top: 10px;
}

.peserta-scroll ol {
    margin: 0;
    padding-left: 18px;
}

.peserta-scroll li {
    margin-bottom: 6px;
    font-size: 14px;
}

