.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    text-align: center;
    color: white;
}
.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center; 
}
.time_left
{
    text-align: center;
    display: block;
}
.countdown-timer
{
    text-align: center;
    display: block; 
}

.progress-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    position: relative;
}
.progress-circle span.count {
    position: absolute;
}
.label {
    margin-top: 5px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
}
@media (max-width: 470px) {
    .progress-circle {
        width: 65px;
        height: 65px;
        font-size: 20px;
    }
    .countdown-container {
        gap: 15px;
    }
    .label {
        font-size: 12px;
    }
}
@media (max-width: 395px) {
    .progress-circle {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    .countdown-container {
        gap: 10px;
    }
    .label {
        font-size: 10px;
    }
}
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    text-align: center;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.progress-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: background 0.3s ease;
}

.progress-circle span {
    position: absolute;
    color: inherit;
}

.label {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.title {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
}

.date-text {
    text-align: center;
    font-size: 20px;
    margin: 20px 0;
}

.submit-button {
    background: #000;
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

