/* [project]/src/app/not-found.module.css [app-client] (css) */
.not-found-module__HS70Aa__container {
  text-align: center;
  background: linear-gradient(135deg, #f8f9fc, #eef2f7);
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.not-found-module__HS70Aa__content {
  z-index: 2;
  max-width: 600px;
  position: relative;
}

.not-found-module__HS70Aa__errorCode {
  color: #ff6a00;
  margin: 0;
  font-size: 8rem;
  font-weight: 800;
  animation: 2s infinite not-found-module__HS70Aa__pulse;
}

.not-found-module__HS70Aa__title {
  color: #002855;
  margin: 10px 0;
  font-size: 2rem;
  font-weight: 600;
}

.not-found-module__HS70Aa__message {
  color: #555;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.not-found-module__HS70Aa__homeBtn {
  color: #fff;
  background: #002855;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .3s, transform .3s;
  display: inline-block;
}

.not-found-module__HS70Aa__homeBtn:hover {
  background: #ff6a00;
  transform: scale(1.05);
}

.not-found-module__HS70Aa__bgShape {
  z-index: 1;
  background: #00285514;
  border-radius: 50%;
  width: 400px;
  height: 400px;
  animation: 6s ease-in-out infinite not-found-module__HS70Aa__float;
  position: absolute;
  top: -100px;
  right: -150px;
}

@keyframes not-found-module__HS70Aa__pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .8;
    transform: scale(1.05);
  }
}

@keyframes not-found-module__HS70Aa__float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(20px);
  }
}

/*# sourceMappingURL=src_app_not-found_module_c656a41e.css.map*/