/* ------------------------------
   BUTTONS
------------------------------- */

.btn {
  font-family: "Axiforma Regular", sans-serif;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  font-size: 15px;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  cursor: pointer;

  background: var(--btn-bg);
  color: var(--btn-color);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--btn-bg-hover);
  box-shadow: 0 6px 16px var(--btn-shadow);
  color: var(--btn-color);
}

.btn-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  pointer-events: none;
}

.regresarButton {
  background-color: #182a3b !important;
  width: 180px !important;
  height: 50px !important;
  font-weight: 600 !important;
  border-radius: 2px !important;
}

/* ------------------------------
   DIVIDERS
------------------------------- */

.divider {
  width: 2px;
  background: rgba(255, 255, 255, 0.35);
}

/* ------------------------------
   INPUTS
------------------------------- */

.ib-input {
  width: 100%;
  max-width: 500px;
  padding: 12px 15px;
  margin: 0 auto 22px auto;
  display: block;
  border-radius: 8px;
  border-width: 1px;
  font-size: 16px;
  font-family: "Caviar Dreams", sans-serif;
  text-align: center;
}

/* ------------------------------
   MEDIA QUERIES
------------------------------- */

/* Ocultar divider en todo lo que no sea desktop */
@media (max-width: 1024px) {
  .divider {
    display: none !important;
  }
}
