#famtp-popup {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, .78);
display: none;
justify-content: center;
align-items: center;
z-index: 999999999;
padding: 20px;
}
.famtp-popup-content {
background: #fff;
width: 100%;
max-width: 650px;
border-radius: 20px;
padding: 35px;
box-shadow: 0 20px 70px rgba(0, 0, 0, .35);
animation: famtpFade .35s ease;
max-height: 90vh;
overflow: auto;
}
@keyframes famtpFade {
from { opacity: 0; transform: translateY(30px); }
to   { opacity: 1; transform: translateY(0); }
}
.famtp-popup-content h3 {
margin-top: 0;
font-size: 30px;
margin-bottom: 10px;
}
.famtp-popup-content p {
color: #555;
margin-bottom: 25px;
}