/* Overlay background */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup container */
.popup-box {
    background: #ffffff;
    width: 400px;
    max-width: 90%;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: popupFade 0.4s ease;
    position: relative;
}

/* Animation */
@keyframes popupFade {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Close button */
.popup-close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #888;
    transition: 0.2s;
}

.popup-close:hover {
    color: #000;
}

/* Title */
.popup-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.popup-para {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
    text-align: center;
}

/* Input fields */
.popup-input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    transition: 0.3s;
}

.popup-input:focus {
    border-color: #ff4d6d;
    outline: none;
    box-shadow: 0 0 5px rgba(255,77,109,0.3);
}

/* Button */
.popup-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #ff4d6d, #ff758f);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255,77,109,0.3);
}

/* Mobile */
@media (max-width: 480px) {
    .popup-box {
        padding: 20px;
    }

    .popup-title {
        font-size: 18px;
    }
}