/* Popup overlay */
.popup-form-overlay {
    position: fixed;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.6);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

/* Popup content */
.popup-form-content {
    background:#fff;
    padding:30px;
    border-radius:12px;
    max-width:500px;
    width:90%;
    position:relative;
    text-align:center;
}

/* Close button */
.popup-close {
    position:absolute;
    top:10px;
    right:15px;
    font-size:24px;
    cursor:pointer;
}

/* Form inputs */
.popup-form-content input {
    width:100%;
    padding:12px;
    margin:10px 0;
    border:1px solid #ccc;
    border-radius:6px;
}

/* Submit button */
.popup-form-content button {
    background:#D4AF37;
    border:none;
    padding:12px 20px;
    border-radius:6px;
    font-weight:600;
    cursor:pointer;
    color:#1a1a1a;
}
