/* [project]/apps/web/app/not-found.css [app-client] (css) */
.not-found-page {
  background: #fff;
  min-height: 60vh;
  padding: clamp(3rem, 7vw, 6rem) 1.5rem;
}

.not-found-content {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
}

.not-found-art img {
  width: 100%;
  height: auto;
  display: block;
}

.not-found-code {
  color: #0e6b44;
  letter-spacing: -.08em;
  margin: 0 0 1rem;
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 800;
  line-height: .95;
}

.not-found-copy h1 {
  color: #102f4f;
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
}

.not-found-description {
  color: #475569;
  max-width: 34rem;
  margin: 0 0 2rem;
  font-size: 1.125rem;
}

.not-found-actions {
  flex-wrap: wrap;
  gap: .75rem;
  display: flex;
}

.not-found-actions .btn {
  justify-content: center;
  min-height: 52px;
  transition: background-color .18s, box-shadow .18s;
}

.not-found-actions .btn-primary:hover {
  background: #0b5a38;
  box-shadow: 0 8px 18px #0e6b4426;
}

.not-found-actions .not-found-secondary:hover {
  background: #e8f5f0;
}

.not-found-help {
  color: #475569;
  align-items: flex-start;
  gap: .5rem;
  margin: 1.75rem 0 0;
  display: flex;
}

.not-found-help svg {
  color: #0e6b44;
  flex: none;
  margin-top: .2rem;
}

.not-found-help a {
  color: #0b5a38;
  text-underline-offset: 3px;
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 720px) {
  .not-found-content {
    text-align: center;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 34rem;
  }

  .not-found-art {
    max-width: 340px;
    margin: 0 auto;
  }

  .not-found-description {
    margin-left: auto;
    margin-right: auto;
  }

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

  .not-found-help {
    text-align: left;
    justify-content: center;
  }
}

/*# sourceMappingURL=apps_web_app_not-found_068hkeq.css.map*/