/* ===========================
   ESTILOS GENERALES
=========================== */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: var(--bs-body-font-family, sans-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===========================
   CONTENEDOR DEL CARD
=========================== */
.page-container {
  border: 1px solid var(--bs-border-color-translucent);
  border-radius: 1rem;
  box-shadow: var(--bs-box-shadow-lg);
  max-width: 440px;
  min-width: 350px;
  width: 100%;
  padding: 3rem 2rem 2rem;
  margin: 0 auto;
}
/* ===========================
   ENLACES 
=========================== */

.-links {
  margin-top: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.-links a {
  color: #969090 !important;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.-links a:hover {
  color: var(--btn-bg-hover) !important;
}
