/* [project]/app/globals.css [app-client] (css) */
:root {
  --ink: #10243e;
  --muted: #65748b;
  --blue: #0b5cab;
  --blue-dark: #08457e;
  --surface: #fff;
  --line: #dfe7f0;
  --background: #eef4fb;
}

* {
  box-sizing: border-box;
}

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

body {
  color: var(--ink);
  background: radial-gradient(circle at top left, #fff 0, var(--background) 52%, #dde9f5 100%);
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

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

.card {
  background: #ffffffe6;
  border: 1px solid #dfe7f0e6;
  border-radius: 28px;
  width: min(100%, 720px);
  padding: clamp(32px, 7vw, 72px);
  box-shadow: 0 24px 70px #1c3f6324;
}

.hero-card {
  text-align: center;
}

.dashboard-card {
  width: min(100%, 760px);
}

.brand-mark {
  color: #fff;
  background: linear-gradient(145deg, #22a7f0, #0b5cab);
  border-radius: 16px;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 28px;
  font-size: 27px;
  font-weight: 800;
  display: grid;
  box-shadow: 0 12px 24px #0b5cab40;
}

.eyebrow, .label {
  color: var(--blue);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

h1 {
  letter-spacing: -.045em;
  max-width: 580px;
  margin: 14px auto 18px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.04;
}

.dashboard-card h1 {
  margin-left: 0;
  font-size: clamp(34px, 6vw, 48px);
}

.lede {
  max-width: 570px;
  color: var(--muted);
  margin: 0 auto 30px;
  font-size: 18px;
  line-height: 1.6;
}

.dashboard-card .lede {
  margin-left: 0;
}

.error-banner {
  color: #8b2525;
  text-align: left;
  background: #fff4f4;
  border: 1px solid #f2c5c5;
  border-radius: 12px;
  gap: 5px;
  margin: 0 auto 22px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.45;
  display: grid;
}

.button {
  color: #fff;
  background: var(--blue);
  min-height: 50px;
  font: inherit;
  cursor: pointer;
  border: 0;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  font-weight: 750;
  text-decoration: none;
  transition: background .2s, transform .2s;
  display: inline-flex;
}

.button:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.secondary-button {
  color: var(--blue);
  background: #e7f1fc;
  margin-top: 30px;
}

.secondary-button:hover {
  color: #fff;
  background: var(--blue);
}

.helper {
  color: #8795a8;
  margin: 18px 0 0;
  font-size: 13px;
}

.profile-grid {
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: 16px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  display: grid;
  overflow: hidden;
}

.profile-grid > div {
  background: #f8fbff;
  gap: 8px;
  padding: 18px;
  display: grid;
}

.profile-grid span:last-child {
  overflow-wrap: anywhere;
  font-size: 14px;
}

@media (max-width: 640px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .profile-grid > div {
    padding: 16px;
  }
}

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