.static-toast {
  position: fixed;
  z-index: 9999;
  top: 24px;
  left: 50%;
  width: min(430px, calc(100vw - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(33, 33, 33, 0.14);
  border-radius: 12px;
  background: #fffaf5;
  color: #212121;
  box-shadow: 0 20px 60px rgba(33, 33, 33, 0.18);
  font-family: Inter, Arial, sans-serif;
  animation: static-toast-in 180ms ease-out;
}

.static-toast--success {
  border-left: 4px solid #b54b1e;
}

.static-toast--error {
  border-left: 4px solid #d62828;
}

.static-toast strong {
  display: block;
  font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.4;
}

.static-toast p {
  margin: 4px 0 0;
  color: #5f5a55;
  font-size: 14px;
  line-height: 1.5;
}

.static-toast button {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: #5f5a55;
  cursor: pointer;
  font: inherit;
  font-size: 22px;
  line-height: 1;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

@keyframes static-toast-in {
  from {
    opacity: 0;
    transform: translate(-50%, -10px);
  }
}
