/* [project]/app/not-found.module.css [app-client] (css) */
.not-found-module__sxuMuG__container {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 24px;
  display: flex;
}

.not-found-module__sxuMuG__card {
  -webkit-backdrop-filter: blur(32px);
  text-align: center;
  background: linear-gradient(145deg, #0f172ad1 0%, #0f172ab8 100%);
  border: 1px solid #ffffff2e;
  border-radius: 28px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 440px;
  padding: 48px 36px 40px;
  animation: .5s cubic-bezier(.16, 1, .3, 1) both not-found-module__sxuMuG__cardIn;
  display: flex;
  box-shadow: 0 30px 60px #0006, 0 0 80px #06b6d414, inset 0 0 0 1px #ffffff0f;
}

@keyframes not-found-module__sxuMuG__cardIn {
  from {
    opacity: 0;
    transform: scale(.94)translateY(14px);
  }

  to {
    opacity: 1;
    transform: scale(1)translateY(0);
  }
}

.not-found-module__sxuMuG__iconWrap {
  color: #67e8f9;
  filter: drop-shadow(0 0 16px #06b6d440);
  background: linear-gradient(145deg, #06b6d426 0%, #06b6d40d 100%);
  border: 1.5px solid #06b6d433;
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  width: 88px;
  height: 88px;
  display: flex;
}

.not-found-module__sxuMuG__title {
  color: #fff;
  letter-spacing: -.03em;
  text-shadow: 0 2px 8px #0000004d;
  margin: 0;
  font-size: clamp(22px, 5vw, 28px);
  font-weight: 900;
  line-height: 1.2;
}

.not-found-module__sxuMuG__message {
  color: #fff9;
  max-width: 320px;
  margin: 0;
  font-size: clamp(14px, 3.5vw, 16px);
  font-weight: 600;
  line-height: 1.6;
}

.not-found-module__sxuMuG__actions {
  gap: 12px;
  width: 100%;
  margin-top: 8px;
  display: flex;
}

.not-found-module__sxuMuG__btnPrimary {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(145deg, #14b8a6 0%, #0d9488 100%);
  border: none;
  border-radius: 14px;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 16px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  transition: all .2s;
  display: flex;
  box-shadow: 0 8px 20px #14b8a659, inset 0 1px #fff3;
}

.not-found-module__sxuMuG__btnPrimary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px #14b8a673, inset 0 1px #fff3;
}

.not-found-module__sxuMuG__btnPrimary:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #14b8a6;
}

.not-found-module__sxuMuG__btnSecondary {
  color: #ffffffd9;
  cursor: pointer;
  background: #ffffff0f;
  border: 1.5px solid #ffffff26;
  border-radius: 14px;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 16px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  transition: all .2s;
  display: flex;
}

.not-found-module__sxuMuG__btnSecondary:hover {
  background: #ffffff1f;
  border-color: #ffffff40;
  transform: translateY(-2px);
}

.not-found-module__sxuMuG__btnSecondary:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #ffffff80;
}

@media (max-width: 480px) {
  .not-found-module__sxuMuG__container {
    padding: 16px;
  }

  .not-found-module__sxuMuG__card {
    border-radius: 24px;
    gap: 20px;
    padding: 36px 24px 32px;
  }

  .not-found-module__sxuMuG__iconWrap {
    border-radius: 20px;
    width: 72px;
    height: 72px;
  }

  .not-found-module__sxuMuG__actions {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .not-found-module__sxuMuG__card {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

/*# sourceMappingURL=app_not-found_module_0pw.qvt.css.map*/