/*
 * login.css — utilitários do Tailwind usados pelo login.php, gerados à mão
 * com os valores exatos do Tailwind v3. Auto-hospedado: substitui o
 * cdn.tailwindcss.com (que rodava JS de terceiro na tela que recebe a senha).
 * As classes de tema (bg-hero, card, btn-cta, ice-line, input-field, fade-up)
 * continuam no <style> inline do login.php.
 */

/* ---- Preflight mínimo (resets que o layout depende) ---- */
*, ::before, ::after { box-sizing: border-box; border-width: 0; border-style: solid; border-color: #e5e7eb; }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; font-family: ui-sans-serif, system-ui, sans-serif; }
body { margin: 0; line-height: inherit; }
h1 { font-size: inherit; font-weight: inherit; margin: 0; }
p { margin: 0; }
img, svg { display: block; vertical-align: middle; }
img { max-width: 100%; height: auto; }
button, input { font-family: inherit; font-size: 100%; font-weight: inherit; line-height: inherit; color: inherit; margin: 0; padding: 0; }
button { text-transform: none; background-color: transparent; background-image: none; cursor: pointer; }
button, [type='submit'] { -webkit-appearance: button; }
:-moz-focusring { outline: auto; }
[hidden] { display: none; }

/* ---- Layout ---- */
.block { display: block; }
.flex { display: flex; }
.hidden { display: none; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.shrink-0 { flex-shrink: 0; }
.relative { position: relative; }
.absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }
.object-contain { object-fit: contain; }
.min-h-screen { min-height: 100vh; }

/* ---- Posição ---- */
.left-3 { left: 0.75rem; }
.right-3 { right: 0.75rem; }
.top-1\/2 { top: 50%; }
.-translate-y-1\/2 { transform: translateY(-50%); }

/* ---- Dimensões ---- */
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-14 { height: 3.5rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-auto { width: auto; }
.w-full { width: 100%; }
.max-w-sm { max-width: 24rem; }

/* ---- Espaçamento ---- */
.gap-2 { gap: 0.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.pl-10 { padding-left: 2.5rem; }
.pr-4 { padding-right: 1rem; }
.pr-11 { padding-right: 2.75rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-1\.5 { margin-bottom: 0.375rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-7 { margin-bottom: 1.75rem; }
.mt-6 { margin-top: 1.5rem; }

/* ---- Bordas / raio ---- */
.border { border-width: 1px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.border-red-200 { border-color: #fecaca; }
.border-slate-300 { border-color: #cbd5e1; }

/* ---- Tipografia ---- */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.tracking-\[0\.25em\] { letter-spacing: 0.25em; }

/* ---- Cores ---- */
.bg-red-50 { background-color: #fef2f2; }
.bg-slate-50 { background-color: #f8fafc; }
.text-white { color: #fff; }
.text-red-700 { color: #b91c1c; }
.text-sky-200 { color: #bae6fd; }
.text-sky-200\/70 { color: rgba(186, 230, 253, 0.7); }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-slate-700 { color: #334155; }
.text-slate-800 { color: #1e293b; }

/* ---- Variantes ---- */
.hover\:text-slate-600:hover { color: #475569; }
.focus\:bg-white:focus { background-color: #fff; }
