/* Small hand-written replacement for the Tailwind CDN JIT script.
   Only the handful of utility classes actually used on the login pages —
   avoids shipping/compiling the entire Tailwind runtime for a couple of
   text/spacing utilities. Values match Tailwind's defaults exactly. */

.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }
.underline { text-decoration: underline; }

.mt-2 { margin-top: .5rem; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }

.text-gray-500 { color: #6b7280; }
.text-blue-600 { color: #4f46e5; }
.text-blue-600.hover\:text-blue-800:hover,
.hover\:text-blue-800:hover { color: #3730a3; }
