.btn {
    @apply font-bold py-2 px-4 rounded;
}

.btn-blue {
    @apply bg-blue-500 text-white hover:bg-blue-700;
}

.btn-red {
    @apply bg-red-500 text-white hover:bg-red-700;
}

.btn-green {
    @apply bg-green-500 text-white hover:bg-green-700;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    height: 100%;
    overflow-x: hidden;
}

#bg-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -2;
    object-fit: cover;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.container {
    max-width: 600px;
    margin: 100px auto;
    background: rgba(255, 255, 255, 0.90);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    padding: 40px 30px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    width: 120px;
    margin-bottom: 20px;

}

p {
    color: #636e72;
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    background: #0984e3;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
}

.btn:hover {
    background: #74b9ff;
}

.info-box {
    max-width: 600px;
    margin: 40px auto;
    background: #dfe6e9;
    border-left: 6px solid #0984e3;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    color: #2d3436;
}

.info-box h2 {
    margin-top: 0;
    color: #0984e3;
    font-size: 22px;
}

footer {
    text-align: center;
    margin: 40px auto;
    color: #b2bec3;
    font-size: 14px;
}

@media (max-width: 768px) {

    .container,
    .info-box {
        margin: 40px 20px;
        padding: 30px 20px;
    }

    h1 {
        font-size: 24px;
    }

    p {
        font-size: 16px;
    }

    .btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .swal-scroll-content {
        max-height: 300px;
        overflow-y: auto;
        text-align: left;
    }

    .swal-title-large {
        font-size: 1.5em;
    }
}