.membership-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.membership-popup {
    background-color: white;
    border-radius: 5px;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    position: relative;
}

.membership-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
}

.membership-popup h2 {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: bold;
}

.membership-step-text {
    font-size: 12px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.membership-email-label {
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
    text-align: center;
}

.membership-email-input {
    width: 100%;
    padding: 8px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

.membership-email-input.error {
    border-color: #ff0000;
}

.membership-error-message {
    color: #ff0000;
    font-size: 12px;
    margin-bottom: 15px;
    display: none;
}

.membership-terms-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 12px;
}

.membership-terms-checkbox input {
    margin-right: 5px;
}

.membership-terms-link {
    color: blue;
    text-decoration: none;
}

.membership-submit-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #666;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
}

.membership-submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.membership-confirmation-text {
    font-size: 12px;
    margin-bottom: 15px;
    line-height: 1.5;
    text-align: center;
}

.membership-email-notice {
    color: #ff0000;
    font-size: 12px;
    text-align: right;
    margin-bottom: 15px;
}

.membership-popup-btn {
    background-color: #4CAF50;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 20px;
}

.membership-popup-btn:hover {
    background-color: #45a049;
}

.membership-about-privacy {
    max-height: 222px;
    border: 1px solid #000000;
    overflow-y: scroll;
    padding: 9px;
    font-size: 10px;
    margin-bottom: 24px;
    display: none;
}

.membership-about-privacy h1 {
    font-size: 12px;
    margin-bottom: 3px;
}