.popup {
    background: rgba(255, 255, 255, 0.95);
    max-width: 500px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    z-index: 9999;
    transition: visibility 0s, opacity 0.3s ease;
    display: none;
}

.popup.show {
    display: block;
    opacity: 1;
}

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

.popup h2 {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}

.popup p {
    text-align: center;
    margin-bottom: 20px;
}

.popup form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.popup form button {
    width: 100%;
    padding: 10px;
    background: #fcc236;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.popup form button:hover {
    background: #fcc236;
}

@media (max-width: 600px) {
    .popup {
        width: 70%;
        padding: 15px;
    }
}