.mbx-auth-resume-target {
  position: relative;
  z-index: 1;
  animation: mbxAuthResumePulse 2.4s ease;
  box-shadow: 0 0 0 0 rgba(255, 145, 31, 0);
}

.mbx-auth-resume-target--soft {
  outline: 3px solid rgba(255, 145, 31, 0.24);
  outline-offset: 4px;
}

.mbx-auth-resume-toast {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 1300;
  max-width: min(360px, calc(100vw - 28px));
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 179, 102, 0.92);
  background: linear-gradient(135deg, rgba(255, 249, 241, 0.98), rgba(255, 236, 214, 0.98));
  color: #6f3c05;
  font-weight: 700;
  line-height: 1.45;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.2);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.mbx-auth-resume-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes mbxAuthResumePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 145, 31, 0);
    transform: translateY(0);
  }
  16% {
    box-shadow: 0 0 0 8px rgba(255, 145, 31, 0.22);
    transform: translateY(-2px);
  }
  48% {
    box-shadow: 0 0 0 16px rgba(255, 145, 31, 0.14);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 145, 31, 0);
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .mbx-auth-resume-toast {
    left: 14px;
    right: 14px;
    bottom: 16px;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mbx-auth-resume-target,
  .mbx-auth-resume-toast {
    animation: none;
    transition: none;
  }
}
