@font-face {
  font-family: 'VG5000';
  src: url('../assets/fonts/VG5000-Regular_web.woff2') format('woff2'),
       url('../assets/fonts/VG5000-Regular_web.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #f7f6f3;
  --color-ink: #284A74;
  --color-accent: #284A74;
  --color-border: #e3e1dc;
  --font-display: 'VG5000', -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-display);
  background: var(--color-bg);
  color: var(--color-ink);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  max-width: 520px;
  width: 100%;
  text-align: center;
  padding: 48px 32px;
}

.logo {
  width: 300px;
  max-width: 100%;
  height: auto;
  margin: 0 auto 64px;
  display: block;
}

.title {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--color-ink);
}

.text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-ink);
  margin: 0;
}

a {
  color: var(--color-accent);
}

@media (max-width: 480px) {
  .title {
    font-size: 1.5rem;
  }

  .logo {
    width: 140px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}