.account-auth-pass {
  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-pass-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
}

.account-auth-pass-icon img ,
.account-auth-pass-icon svg {
  max-width: 20px;
  max-height: 20px;
  height: 100%;
  width: auto;
}

.account-auth-pass-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 #c2c2c2;
  border-radius: 6px;
}

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

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

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

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

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

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

.account-auth-pass-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-pass[assigned='false'] #confirm-passphrase-removal {
  display: none;
}

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

/* .account-auth-pass-option:not([working='true']) catchup-spinner {
  display: none;
}

*/

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

.account-auth-pass-dialog {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  gap: 1rem;
  background: var(--background);
  z-index: 1;
  padding: 1rem;
  box-shadow: 0px 8px 15px rgb(0 0 0 / 16%), 0px 0px 0px 1px rgb(0 0 0 / 16%);
  border-radius: 8px;
  width: fit-content;
  min-width: 300px;
  min-height: 165px;
  border: none;
}

.account-auth-pass-dialog:not([open]) {
  display: none;
}

.account-auth-pass-dialog-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.account-auth-pass-dialog-heading {
  font-weight: 600;
  font-size: 16px;
  color: #444;
}

.account-auth-pass-dialog-info {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: #7e7e7e;
}

.account-auth-pass-dialog-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.account-auth-pass-dialog-option {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 6px 10px;
  gap: 10px;
  border-radius: 6px;
  width: fit-content;
  background: none;
  border: 1.5px solid dodgerblue;
  color: dodgerblue;
  font-weight: 500;
  font-size: 14px;
  transition: all ease 300ms;
}

.account-auth-pass-dialog-option:hover {
  background: rgb(30, 144, 255, 0.05);
}

.account-auth-pass-dialog-option:disabled {
  background: none;
}

.account-auth-pass-dialog-option.delete {
  border: 1.5px solid crimson;
  color: crimson;
}

.account-auth-pass-dialog-option.delete:hover {
  background: rgb(220, 20, 60, 0.05);
}

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

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