@keyframes register-error-pop {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.register-error {
  display: none;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #d9001b;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(217, 0, 27, 0.25);
}

.register-error.is-visible {
  display: flex;
  animation: register-error-pop 200ms ease-out;
}

.register-error-icon {
  flex: 0 0 auto;
  font-size: 20px;
  line-height: 1;
  margin-top: 2px;
}

.register-error-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.register-error-message {
  font-size: 13px;
  line-height: 1.3;
}
