.exclusive-account-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.exclusive-account-popup-content {
    background-color: #242626;
    padding: 30px;
    border-radius: 0;
    max-width: 500px;
    width: 90%;
    text-align: center;
    color: #f0f0f0;
}

.exclusive-account-popup-content h2 {
    margin-top: 0;
    color: #f0f0f0;
}

.exclusive-account-popup-content p {
    color: #f0f0f0;
}

.exclusive-account-popup-content input[type="text"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 0;
}

.exclusive-account-popup-content button {
    background-color: #6f7c80;
    color: white;
    padding: 10px 30px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    width: 100%;
}

.exclusive-account-popup-content button:hover {
    background-color: #8c979a;
}

.exclusive-account-resend {
    margin-top: 15px;
}

.exclusive-account-resend a {
    color: #f0f0f0;
}

.exclusive-account-message {
    margin-top: 15px;
    color: #6f7c80;
}

.exclusive-account-message.success {
    color: #8c979a;
}

.exclusive-account-message.error {
    color: #f44336;
}