/* Popup container */
.ec-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.ec-popup {
    background-color: #fff;
    padding: 20px 40px;
    border-radius: 5px;
    text-align: center;
    position: relative;
    max-width: 400px;
    width: 90%;
}

.ec-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #aaa;
}

.ec-popup-close:hover {
    color: #333;
}

.ec-popup h2 {
    margin-top: 0;
}

.ec-popup-form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.ec-popup-form button {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: #0073aa;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
}

.ec-popup-form button:hover {
    background-color: #005177;
}

.ec-popup-message {
    margin-top: 15px;
    font-weight: bold;
}