body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000000;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.card-holder {
    background-color: #ffffff;
    display: flex;
    flex-direction: column; /* Stack title and loading dots vertically */
    align-items: center;    /* Center them horizontally */
    justify-content: center; /* Center them vertically */
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    height: 180px; /* Increased height for better spacing */
    padding: 20px;
    box-sizing: border-box;
}

.title {
    font-family: 'Outfit', sans-serif;
    color: #000000;
    font-size: 27px;
    font-weight: 800;
    text-align: center;
}

.cf-turnstile {
    margin-bottom: 10px;
}

.loading-container {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.dot {
    width: 16px;
    height: 16px;
    background-color: #000000;
    border-radius: 50%;
    animation: dot-blink 1.5s infinite ease-in-out both;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dot-blink {
    0%, 80%, 100% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.5);
    }
}

@media (max-width: 470px) {
    .card-holder {
        height: 220px;
    }
}