/* THIRDEYE SOLUTIONZ — separated stylesheet */

/* =========================================================
   TEXT LINK
========================================================= */

.text-link {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  border: 0;

  background: transparent;

  padding: 0;

  margin-top: 25px;

  color: var(--ink);

  font-weight: 700;

  font-size: 13px;
}

.text-link.light {
  color: #fff;

  text-decoration: underline;

  text-underline-offset: 6px;
}

/* =========================================================
   BUTTONS
========================================================= */

.button {
  display: inline-flex;

  justify-content: center;

  align-items: center;

  gap: 9px;

  border: 0;

  padding: 14px 22px;

  border-radius: 8px;

  font-weight: 800;

  transition:
    .25s ease;
}

.button-dark {
  background: var(--teal);

  color: #fff;
}

.button-dark:hover {
  background: #082f32;

  transform: translateY(-2px);
}

.button-gold {
  background: var(--gold);

  color: #152227;
}

.button:disabled {
  opacity: .6;

  cursor: not-allowed;

  transform: none;
}

.full {
  width: 100%;
}

.form-note {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 5px;

  color: #777;

  font-size: 10px;
}

