.auth-error-alert {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 100%;
  max-width: 500px;
  animation: slide-down 0.3s ease-out forwards;
}

.auth-error-content {
  background-color: #fff1f0;
  border: 1px solid #ffccc7;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.auth-error-message {
  color: #cf1322;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.auth-error-icon {
  margin-right: 8px;
  font-size: 16px;
}

.auth-error-close {
  background: none;
  border: none;
  color: #8c8c8c;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  margin-left: 12px;
}

.auth-error-close:hover {
  color: #cf1322;
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate(-50%, -20px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
