#rizegoForm{
max-width:600px;
margin:auto;
background:#fff;
padding:25px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.1)
}
#rizegoForm input,
#rizegoForm textarea,
#rizegoForm select{
width:100%;
padding:12px;
margin-bottom:12px;
border-radius:10px;
border:1px solid #ddd
}
#rizegoForm button{
background:#0f766e;
color:#fff;
border:none;
padding:14px;
border-radius:12px;
width:100%;
font-size:16px;
cursor:pointer
}
#rizegoPopupOverlay{
position:fixed;
inset:0;
background:rgba(0,0,0,.55);
display:flex;
align-items:center;
justify-content:center;
z-index:9999;
animation:fadeIn .3s ease
}
#rizegoPopup{
background:#fff;
padding:30px;
border-radius:22px;
max-width:360px;
width:90%;
text-align:center;
box-shadow:0 20px 50px rgba(0,0,0,.25);
animation:scaleIn .3s ease
}
#rizegoPopup .icon{
font-size:42px;
margin-bottom:10px
}
#rizegoPopup h3{
margin:10px 0;
font-size:20px
}
#rizegoPopup p{
font-size:15px;
line-height:1.5;
color:#555
}
#rizegoPopup button{
margin-top:18px;
background:#0f766e;
color:#fff;
border:none;
padding:12px 22px;
border-radius:12px;
font-size:15px;
cursor:pointer
}

@keyframes fadeIn{
from{opacity:0}to{opacity:1}
}
@keyframes scaleIn{
from{transform:scale(.9)}to{transform:scale(1)}
}
