/* [project]/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  --background: #f6f8fb;
  --foreground: #172033;
  --muted: #627084;
  --panel: #fff;
  --border: #d8dee8;
  --accent: #1167d8;
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Apple SD Gothic Neo, Noto Sans KR, sans-serif;
}

.page {
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  display: grid;
}

.panel {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 8px;
  width: min(100%, 520px);
  padding: 40px;
  box-shadow: 0 16px 40px #17203314;
}

.eyebrow {
  color: var(--accent);
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
}

h1 {
  letter-spacing: 0;
  margin: 0;
  font-size: clamp(36px, 8vw, 56px);
  line-height: 1;
}

.description {
  color: var(--muted);
  margin: 20px 0 0;
  font-size: 17px;
  line-height: 1.6;
}

.status-list {
  gap: 12px;
  margin-top: 28px;
  display: grid;
}

.status-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 88px;
  padding: 18px;
  display: flex;
}

.status-card h2 {
  letter-spacing: 0;
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
}

.status-card p {
  color: var(--muted);
  overflow-wrap: anywhere;
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.status-card span {
  letter-spacing: 0;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  min-width: 52px;
  min-height: 30px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
}

.status-card.is-ok {
  background: #f3fbf5;
  border-color: #b7dfc4;
}

.status-card.is-ok span {
  color: #fff;
  background: #15803d;
}

.status-card.is-fail {
  background: #fff7f7;
  border-color: #f1b9b9;
}

.status-card.is-fail span {
  color: #fff;
  background: #c81e1e;
}

.checked-at {
  color: var(--muted);
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .panel {
    padding: 28px;
  }
}

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