/* ============================================================
   MODAL BASE – MOLDE GLOBAL
   modal.css
   SOLO ESTRUCTURA – SIN DISEÑO
============================================================ */

#loginModal {
  display: none;
  position: fixed;
  inset: 0;

  justify-content: center;
  align-items: center;

  background: rgba(0, 0, 0, 0.7);

  z-index: 10000;
}

#loginModal.show {
  display: flex;
}

/* Caja base */
#loginModal .modal-content {
  width: 450px;
  max-width: 90%;
  padding: 30px;
  border-radius: 14px;

  background: #111;
  color: #fff;

  position: relative;
}

/* Bloqueo scroll cuando modal abierto */
body.modal-active {
  overflow: hidden;
}
