/**
 * Popup đăng ký — căn giữa màn hình (ghi đè plugin style.css)
 */
html body #popup-register.overlay.active,
html body #popup-register.active {
  position: fixed !important;
  inset: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 999999 !important;
  box-sizing: border-box !important;
}

html body #popup-register.active .popup,
html body #popup-register.overlay.active .popup {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translate(-50%, -50%) !important;
  margin: 0 !important;
  width: min(480px, calc(100vw - 32px)) !important;
  max-width: 480px !important;
  z-index: 1000000 !important;
}

@media (max-width: 490px) {
  html body #popup-register.active .popup,
  html body #popup-register.overlay.active .popup {
    max-width: 370px !important;
    width: min(370px, calc(100vw - 32px)) !important;
  }
}
