@font-face {
  font-family: "Pretendard";
  src: url("/fonts/Pretendard-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("/fonts/Pretendard-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color: #172033;
  background: #f8fafc;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
}

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

.student-link-panel {
  width: min(100%, 420px);
  padding: 32px 24px 24px;
  text-align: center;
}

.student-link-logo {
  display: block;
  margin: 0 auto 20px;
  border-radius: 8px;
}

.student-link-eyebrow {
  margin: 0 0 8px;
  color: #1f2a64;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  word-break: keep-all;
}

.student-link-status {
  min-height: 48px;
  margin: 12px 0 20px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  word-break: keep-all;
}

.student-link-actions {
  display: grid;
  gap: 10px;
}

.student-link-button {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px solid #dbe2ea;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

.student-link-button.primary {
  border-color: #1f2a64;
  color: #ffffff;
  background: #1f2a64;
}

.student-link-button.secondary {
  color: #1f2a64;
  background: #ffffff;
}

.student-link-button:focus-visible {
  outline: 3px solid rgba(31, 42, 100, 0.24);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
