@charset "UTF-8";
.recruit__error-panel {
  font-size: 1.05rem;
  font-weight: 500;
  color: #b71c1c;
  text-shadow: 0 1px 3px rgba(183, 28, 28, 0.4);
  background: linear-gradient(90deg, rgba(183, 28, 28, 0.2) 0%, rgba(183, 28, 28, 0.05) 100%);
  border: 1px solid rgba(183, 28, 28, 0.18);
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(150, 0, 0, 0.5), 0 5px 15px rgba(150, 50, 50, 0.75);
  margin: 0 0.5rem 0.5rem 0.5rem;
  animation: recruitBorderPulse 1.2s ease 5;
  position: relative;
}
.recruit__error-panel:before {
  content: "⚠️";
  margin-right: 0.5rem;
  display: inline-block;
  transform-origin: center;
  animation: recruitIconShake 0.6s ease 0s 1;
  margin-left: -0.35rem;
  margin-right: 0.5rem;
}
.recruit__error-panel--title {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

@keyframes recruitBorderPulse {
  0% {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
    border-color: rgba(183, 28, 28, 0.12);
  }
  40% {
    box-shadow: 0 8px 22px rgba(150, 0, 0, 0.35);
    border-color: rgba(183, 28, 28, 0.28);
  }
  100% {
    box-shadow: 0 5px 10px rgba(150, 0, 0, 0.5), 0 5px 15px rgba(150, 50, 50, 0.75);
    border-color: rgba(183, 28, 28, 0.18);
  }
}
@keyframes recruitIconShake {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  20% {
    transform: translateX(-3px) rotate(-6deg);
  }
  40% {
    transform: translateX(3px) rotate(6deg);
  }
  60% {
    transform: translateX(-2px) rotate(-3deg);
  }
  80% {
    transform: translateX(1px) rotate(2deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}

/*# sourceMappingURL=unit.recruit.css.map */