.pwd-popup { display:none; position:fixed; inset:0; width:100%; height:100%; z-index:9999; }
.pwd-popup.active { display:block; }
.pwd-popup-body-lock { overflow:hidden !important; }
.pwd-popup-overlay { position:absolute; inset:0; background:rgba(0,0,0,0.5); }
.pwd-popup-container {
  position:absolute;
  top:50%; left:50%; transform:translate(-50%, -50%) scale(0.95);
  background-color:#fff;
  padding:35px;
  border-radius:var(--pwd-popup-radius, 10px);
  box-shadow:0 0 20px rgba(0, 0, 0, 0.3);
  width:90%; max-width:960px;
  z-index:2; opacity:0; transition:all 0.25s ease;
  max-height:var(--pwd-popup-max-height, 90vh);
  overflow-y:auto; overflow-x:hidden;
  -webkit-overflow-scrolling:touch;
  box-sizing:border-box;
}
.pwd-popup.active .pwd-popup-container { opacity:1; transform:translate(-50%, -50%) scale(1); }
.pwd-popup-close {
  position:absolute; top:12px; right:12px; width:34px; height:34px; min-width:34px;
  padding:0; margin:0; border:none; border-radius:50%; background:#008088; color:#fff;
  cursor:pointer; z-index:50; display:flex; align-items:center; justify-content:center;
  line-height:1; font-size:18px; font-weight:700; box-shadow:0 2px 8px rgba(0,0,0,0.18);
}
.pwd-popup-close:hover { background:#B7A96C; }
.pwd-popup button:not(.pwd-popup-close), .pwd-popup .pwd-popup-btn {
  display:block; width:100%; margin:15px 0; font-family:Poppins,sans-serif; font-size:17px;
  font-weight:600; padding:10px 30px; color:#fff; background-color:#008088; border:none;
  cursor:pointer; transition:background-color 0.2s ease;
}
.pwd-popup button:not(.pwd-popup-close):hover, .pwd-popup .pwd-popup-btn:hover { background-color:#B7A96C; }
.pwd-popup-content { position:relative; z-index:5; padding-top:8px; }
.pwd-popup-content input[type="text"], .pwd-popup-content input[type="email"], .pwd-popup-content textarea {
  width:100%; border:1px solid #d4d4d4; padding:12px; box-sizing:border-box;
}
.pwd-popup-form-response.success { color:#0a7a2f; }
.pwd-popup-form-response.error { color:#b32d2e; }
@media (max-width:767px) {
  .pwd-popup-container {
    width:90%;
    padding:var(--pwd-popup-mobile-padding, 20px);
    max-height:var(--pwd-popup-mobile-max-height, 85vh);
  }
}
@media (max-width:480px) {
  .pwd-popup-container {
    width:95%;
    padding:var(--pwd-popup-mobile-padding, 20px);
    max-height:var(--pwd-popup-mobile-max-height, 85vh);
  }
}
