.welcome-popup-section {
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 110;
}

.close-welcome-popup {
    position: absolute;
    right: 20px;
    top: 20px;
}

.welcome-popup-section form {
    display: flex;
    flex-direction: column;
    width: 600px;
    margin: 0px auto;
    padding: 0px;
    justify-content: center;
    min-width: 100px;
    max-width: 600px;
}

.welcome-popup-section h2,
.welcome-popup-section h3,
.welcome-popup-section p,
.timer span {
    color: #fff;
}

.timer {
    display: flex;
    align-items: center;
    column-gap: 6px;
    justify-content: center;
    margin-bottom: 10px;
}

.timer .divider {
    font-size: 50px;
    margin-bottom: 28px;
    font-weight: 700;
    color: #fff;
}

.timer .time-box p {
    font-size: 50px;
    margin-bottom: 0;
    font-weight: 700;
    color: #fff;
}

.welcome-popup-section h2 {
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 0;
}

.welcome-popup-section h3 {
    font-size: 55px;
    text-align: center;
    font-weight: 700;
}

.welcome-popup-section p {
    text-align: center;
    font-size: 20px;
}

.welcome-popup-section .form-action.first button {
    background-color: #ffe01b;
    border: 0;
    padding: 16px 24px;
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    border-radius: 20px;
    margin-top: 16px;
}

.welcome-popup-section .form-action.second button {
    border: solid 2px #fff;
    padding: 16px 24px;
    margin-top: 24px;
    width: 100%;
    border-radius: 20px;
    color: #fff;
    background-color: transparent;
    font-size: 20px;
    font-weight: 700;
}

.welcome-popup-section .form-control {
    padding: 16px 24px;
    border-radius: 20px;
    font-size: 20px;
    box-shadow: none !important;
}


@media (max-width:575px) {
    .welcome-popup-section h2 {
        font-size: 20px;
    }


    .timer .time-box p,
    .timer .divider {
        font-size: 24px !important;
    }

    .welcome-popup-section h3 {
        font-size: 28px;
    }

    .welcome-popup-section form,
    .welcome-popup-inner {
        width: 100% !important;
    }

    .welcome-popup-section .form-action.first button,
    .welcome-popup-section .form-action.second button,
    .welcome-popup-section .form-control {
        font-size: 16px;
    }

    .timer .time-box span {
        font-size: 14px;
    }
}