#popup-form {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(12px);
z-index: 9999;
}
#popup-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #fff;
padding: 32px;
width: 80%;
max-width: 600px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
border-radius: 5px;
}
#popup-close:after {
content: "✕";
position: absolute;
top: 12px;
right: 12px;
cursor: pointer;
font-size: 20px;
line-height: 1;
}