.subtitle {
  word-break: break-word;
}
.subtitle:empty {
  display: none;
}
.dline {
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: inherit;

  width: 100%;
}
.dtext {
  line-height: 0.1em;
  white-space: nowrap;
}
.errorIcon {
  flex-shrink: 0;
  padding-right: 5px;
  fill: currentColor;
}

.footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.link {
  cursor: pointer;
  text-decoration: none;
  outline: none;
  &:hover {
    text-decoration: underline;
  }
  &:visited {
    color: inherit;
  }
}
.passkeyLogo {
  color: currentColor;
  vertical-align: middle;
  flex-shrink: 0;
  line-height: 1em;
  display: inline-block;
  width: 1em;
  height: 1em;
}
.input {
  appearance: none;
  &::-webkit-outer-spin-button,
  &::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
}
.buttonLink {
  cursor: pointer;
  text-decoration: none;
  outline: none;
  &:visited {
    color: inherit;
  }
}
.rootOtp {
  gap: 8px;
  display: flex;
  align-items: center;
  width: max-content;
}
.rootSlot {
  min-height: 1em;
  position: relative;
  transition: all 0.3s;
}
.otp {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  color: var(--theme-fg-default);
  padding: 0 16px;
  border: 1px solid var(--theme-border-default);
  border-radius: var(--theme-radii-md);
  &:global([data-active="true"]) {
    z-index: 10;
    border-color: var(--theme-border-brand);
  }
}
.slots {
  display: flex;
  gap: 6px;
}
.caret {
  position: absolute;
  pointer-events: none;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  & > div {
    width: 1px;
    height: 1em;
    background-color: currentColor;
    animation: caret 1.25s ease-out infinite;
  }
}

.buttonGroup {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@keyframes caret {
  0%,
  70%,
  100% {
    opacity: 1;
  }
  20%,
  50% {
    opacity: 0;
  }
}
