* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'montserrat', sans-serif;
    background-image: url(../assets/background.jpg);
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}
.selo{
    width: 70%;
    height: auto;
    margin-bottom: 20px;
}
.hero-section {
    padding: 40px 0 60px;
}

.logopoco {
    width: 70%;
    height: auto;
    margin-bottom: 40px;
    filter: brightness(1.2);
}


.offerscomming{
    font-size: 50px;
    font-weight: 900;
    color: #ffd082;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.4;
    font-family: 'Blacker Display', sans-serif;
                                                
}


.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

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

.countdown-number {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    background: rgba(0, 0, 0, 0.644);
    border-radius: 8px;
    padding: 10px 20px;
    min-width: 90px;
}

.countdown-label {
    font-size: 14px;
    color: #ccc;
    margin-top: 8px;
    text-transform: capitalize;
}



.form-section {
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.form-title {
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    color: #fff;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: #ffd082;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    color: #000;
    font-weight: 500;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    box-shadow: 0 0 8px 2px rgba(255, 208, 130, 0.8);
    border: 1px solid #ffd082;
    background-color: #fff8e1;
    color: #000;
}


.form-group input::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.form-group select {
    cursor: pointer;
    width: 100%;
    padding: 14px 16px;
    background: #ffd082;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    color: #000000;
    font-weight: 500;

}

.form-group select option {
    background: #fff;
    color: #000;
}

.checkbox-group {
    margin: 20px 0;
    text-align: left;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    line-height: 1.5;
}
.checkbox-group input[type="checkbox"] {

}
button[type="submit"] {
    padding: 20px;
    background:#ffa726;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}


button[type="submit"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

footer {
    margin-top: 60px;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-footer {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.disclaimer {
    font-size: 12px;
    color: #999;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .black-text {
        font-size: 60px;
        letter-spacing: 4px;
    }

    .subtitle {
        font-size: 22px;
    }

    .countdown-number {
        font-size: 40px;
        min-width: 70px;
        padding: 8px 12px;
    }

    .countdown-separator {
        font-size: 32px;
    }

    .countdown-label {
        font-size: 12px;
    }

    .form-section {
        padding: 25px;
    }

    .form-title {
        font-size: 18px;
    }

    button[type="submit"] {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .countdown {
        gap: 8px;
    }

    .countdown-number {
        font-size: 32px;
        min-width: 60px;
        padding: 6px 10px;
    }

    .countdown-separator {
        font-size: 24px;
        margin: 0 2px;
    }
}

button[type="submit"]:disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}


@media (max-width: 1024px) {
.offerscomming {
font-size: 40px;
}
}

@media (max-width: 768px) {
.offerscomming {
font-size: 38px;
}
}

@media (max-width: 480px) {
.offerscomming {
font-size: 34px;
}
}