.info-tooltip {
  display: inline-flex;
  width: 16px;
  height: 16px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex: 0 0 16px;
  border: 0;
  background: transparent;
  color: #94A3B8;
  cursor: pointer;
  line-height: 1;
  transition: color 180ms ease;
  vertical-align: middle;
}

.info-tooltip__icon {
  display: block;
  width: 16px;
  height: 16px;
}

.info-tooltip:hover,
.info-tooltip:focus-visible,
.info-tooltip[aria-expanded="true"] {
  color: #3B82F6;
  outline: none;
}

.dashboard-tooltip {
  position: fixed;
  z-index: 1000;
  width: min(280px, calc(100vw - 32px));
  padding: 10px 12px;
  border: 1px solid var(--border-glass-hover);
  border-radius: 10px;
  background: rgba(22, 24, 34, .98);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .28);
  color: var(--text-secondary);
  font-size: .75rem;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity .16s ease, transform .16s ease;
}

.dashboard-tooltip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(255, 70, 70, 0.15);
  border: 1px solid rgba(255, 70, 70, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #ff6b6b;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.auth-form-message {
  min-height: 1.25rem;
  margin: 12px 0 0;
  color: #ff8b8b;
  font-size: .78rem;
  line-height: 1.4;
  text-align: center;
}

.auth-form-message[data-state="success"] {
  color: #00e68a;
}

.auth-recovery-dialog :focus-visible,
#loginScreen input:focus-visible,
#loginScreen button:focus-visible,
#loginScreen a:focus-visible {
  outline: 2px solid #a78bfa;
  outline-offset: 3px;
}

.auth-field {
  margin-bottom: 16px;
}

.auth-field label {
  display: block;
  margin-bottom: 8px;
  color: #b8bcc8;
  font-size: 13px;
  font-weight: 600;
}

.auth-password-control {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
}

.auth-password-control:focus-within {
  border-color: rgba(167,139,250,.75);
  box-shadow: 0 0 0 3px rgba(167,139,250,.15);
}

.auth-password-control input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
}

.auth-password-toggle,
.auth-recovery-cancel {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.auth-password-toggle {
  padding: 6px;
  color: #b8bcc8;
  font-size: .75rem;
}

.auth-recovery-cancel {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 8px;
  color: #b8bcc8;
  font-size: .85rem;
}

.auth-recovery-dialog button:disabled {
  cursor: wait;
  opacity: .65;
}

#loginScreen button:disabled {
  cursor: wait;
  opacity: .65;
}
