/* Imprivata Verify Button – public CSS */
.toolbox-button {
  background-color: #426DA9;
  color: #fff;
  border-radius: 6px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;

  /* Typography per spec */
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;

  user-select: none;
  outline: none;
}

/* Hover */
.toolbox-button:hover:not(:disabled) {
  background-color: #284165;
}

/* Focus */
.toolbox-button:focus,
.toolbox-button:focus-visible {
  border-color: #00A2C7;
}

/* Active (pressed) */
.toolbox-button:active:not(:disabled) {
  background-color: #284165;
  border-color: #00A2C7;
}

/* Disabled */
.toolbox-button:disabled,
.toolbox-button[aria-disabled="true"] {
  background-color: #999999;
  color: #ffffff;
  cursor: not-allowed;
  opacity: 1;
}

/* Anchor variant support */
a.toolbox-button { display: inline-flex; color: #ffffff; }
a.toolbox-button:visited { color: #ffffff; }
