.account-auth-credential {
  position: relative;
  gap: 4px;
}

.account-auth-credential-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  padding: 2px 4px;
  gap: 5px;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.01em;
  color: color-mix(in srgb, var(--text), transparent 40%);
}

.account-auth-credential-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: crimson;
}

.account-auth-credential-icon svg {
  max-width: 20px;
  max-height: 20px;
  height: 100%;
  width: auto;
  transition: all ease 300ms;
  color: rgba(220, 20, 60, 0.5);
}

.account-auth-credential-icon:hover svg {
  color: rgba(220, 20, 60, 0.8);
}

.account-auth-credential-btn {
  position: relative;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  gap: 6px;
  transition: all ease 300ms;
  padding: 0;
  background: none;
  border: none;
  color: currentColor;

  padding: 2px 8px;
  border: 1.5px solid color-mix(in srgb, var(--text), transparent 80%);

  border-radius: 6px;
}

.account-auth-credential[assigned='false'] .account-auth-credential-btn {
  padding: 0;
  border: 0;
}

.account-auth-credential[assigned='false'] .account-auth-credential-btn:not(:hover) {
  opacity: 0.6;
}

.account-auth-credential[assigned='false'] .account-auth-credential-btn::before {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: '';
  transition: all ease 300ms;
}

.account-auth-credential[assigned='false'] .account-auth-credential-btn:not(:hover):before {
  opacity: 0;
}

.account-auth-credential[assigned='false'] .account-auth-credential-btn:empty::after {
  content: attr(data-empty);
  color: rgba(68, 68, 68, 0.66);
}

.account-auth-credential-options {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}

.account-auth-credential-option {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  color: currentColor;
  transition: all ease 300ms;
  cursor: pointer;
}

.account-auth-credential-option:not(:hover) {
  opacity: 0.5;
}

.account-auth-credential-option img,
.account-auth-credential-option svg {
  max-height: 14px;
  max-width: 14px;
  height: 100%;
  width: auto;
}

.account-auth-credential-issue {
  font-size: 12px;
  height: 16px;
  color: crimson;
  transition: all ease 600ms;
}

.account-auth-credential-issue:empty {
  opacity: 0;
  height: 0;
  filter: blur(4px);
}
