/* general */
.img-cover {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* event form */
.event-bg {
    background-image: url('/img/web/event-bg.jpg');
    background-size: cover;
    background-position: 0px 0px;
}

.event-bg-white {
    background-color: #ffffff;
}

.event-bg-register {
    background-color: #edf3fd;
    border: 1px solid #0099cc;
    border-radius: 5px;
}

.event-logo {
    width: 30%;
}

.event-top {
    margin-bottom: 30px;
}

.event-top-bg {
    padding: 5rem 0 0 0;
    background: #1a64a0;
}

.event-top-sub {
    background: #f5faff;
    border-bottom: 1px solid #d5e4f1;
    border-top: 1px solid #d5e4f1;
    padding: 1rem;
    margin-top: -10px;
}

.event-top h1 {
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .event-logo {
        width: 50%;
    }

    .event-top h1 {
        font-size: 45px;
    }
}

.event-banner {
    width: 100%;
}

.event-register-btn {
    font-size: 20px;
}

/* Download buttons */
.download-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.download-btn {
    display: flex;
    align-items: center;
    background: #333;
    color: white;
    text-decoration: none;
    padding: 0 24px;
    height: 56px;
    border-radius: 28px;
    transition: transform 0.2s;
    min-width: 205px;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.download-btn:hover {
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.download-btn-icon {
    margin-right: 12px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-btn-text {
    text-align: left;
}

.download-btn-text-small {
    font-size: 12px;
    line-height: 1;
    margin-bottom: 2px;
}

.download-btn-text-large {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    margin-top: -4px;
}

/* Fallback page styles */
.fallback-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 20px;
}

.fallback-content {
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.fallback-logo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    font-weight: bold;
}



.loading {
    display: none;
    margin: 20px 0;
}

.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}