/* [project]/src/app/(frontend)/styles.css [app-client] (css) */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

a {
  text-decoration: none;
}

input, button {
  font-family: inherit;
  font-size: 1rem;
}

.home {
  color: #fff;
  text-align: center;
  background: #1a1a1a;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  display: flex;
}

.home .content {
  max-width: 600px;
}

.home h1 {
  margin: 1.5rem 0;
  font-size: 2rem;
}

.home .links {
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  display: flex;
}

.home .links a {
  border-radius: 4px;
  padding: .75rem 1.5rem;
  font-weight: 500;
}

.home .links a.admin {
  color: #fff;
  background: #ec4899;
}

.home .links a.admin:hover {
  background: #db2777;
}

.home .links a.docs {
  color: #fff;
  background: #374151;
}

.home .links a.docs:hover {
  background: #4b5563;
}

.home .footer {
  color: #6b7280;
  margin-top: auto;
  padding-top: 2rem;
}

.home .footer a.codeLink {
  color: #9ca3af;
}

.home img {
  width: 65px;
  height: 65px;
}

/*# sourceMappingURL=src_app_%28frontend%29_styles_0lew7-s.css.map*/