/* [project]/src/app/error.module.css [app-client] (css) */
.error-module__bSZLSW__container {
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 2rem;
  animation: .8s cubic-bezier(.16, 1, .3, 1) error-module__bSZLSW__fadeIn;
  display: flex;
}

.error-module__bSZLSW__card {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 520px;
  padding: 3rem 2.5rem;
  display: flex;
}

.error-module__bSZLSW__iconContainer {
  background: radial-gradient(circle, #ef444414 0%, #0000 70%);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-bottom: .5rem;
  animation: 2.5s ease-in-out infinite error-module__bSZLSW__pulse-danger;
  display: flex;
  position: relative;
}

.error-module__bSZLSW__errorIcon {
  color: #ef4444;
  animation: .6s cubic-bezier(.36, .07, .19, .97) .2s both error-module__bSZLSW__shake;
}

.error-module__bSZLSW__title {
  font-size: var(--text-3xl);
  color: hsl(var(--foreground));
  margin: 0;
}

.error-module__bSZLSW__description {
  color: hsl(var(--muted-foreground));
  font-size: var(--text-base);
  margin: 0;
  line-height: 1.6;
}

.error-module__bSZLSW__errorDetail {
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: hsl(var(--foreground));
  text-align: left;
  border: 1px solid var(--border-light);
  background: #0000000a;
  width: 100%;
  max-height: 120px;
  padding: 1rem;
  overflow-x: auto;
}

.error-module__bSZLSW__actions {
  justify-content: center;
  gap: 1rem;
  width: 100%;
  margin-top: 1rem;
  display: flex;
}

.error-module__bSZLSW__actions button {
  flex: 1;
  max-width: 160px;
}

.error-module__bSZLSW__btnIcon {
  margin-right: .5rem;
}

@keyframes error-module__bSZLSW__shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

@keyframes error-module__bSZLSW__pulse-danger {
  0% {
    box-shadow: 0 0 #ef444433;
  }

  70% {
    box-shadow: 0 0 0 15px #ef444400;
  }

  100% {
    box-shadow: 0 0 #ef444400;
  }
}

@keyframes error-module__bSZLSW__fadeIn {
  from {
    opacity: 0;
    transform: scale(.95);
  }

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

@media (max-width: 640px) {
  .error-module__bSZLSW__actions {
    flex-direction: column;
    align-items: center;
  }

  .error-module__bSZLSW__actions button {
    width: 100%;
    max-width: none;
  }
}

/*# sourceMappingURL=src_app_error_module_02o91ul.css.map*/