/* ============================================================
   DELTAHUB INTELLIGENCE HUB — Login Page Stylesheet
   "Classified Access" Portal Aesthetic
   ============================================================
   Version : 2.0.0
   Updated : 2026-06-08
   Author  : DeltaHub Bureau de Dados e Inteligência
   ============================================================ */

/* ────────────────────────────────────────────────────────────
   1. FONT IMPORTS
   ──────────────────────────────────────────────────────────── */
/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap'); */

/* ────────────────────────────────────────────────────────────
   2. CSS VARIABLES (Shared design tokens)
   ──────────────────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-deep: #06090f;
  --bg-surface: #0a192f;
  --bg-card: rgba(10, 25, 47, 0.8);
  --bg-card-hover: rgba(15, 35, 60, 0.9);
  --glass-border: rgba(0, 212, 255, 0.08);
  --glass-border-hover: rgba(0, 212, 255, 0.2);

  /* Typography */
  --text-primary: #e2e8f0;
  --text-secondary: #64748b;
  --text-tertiary: #334155;

  /* Accent Colors */
  --cyan: #00d4ff;
  --cyan-dim: rgba(0, 212, 255, 0.12);
  --red: #ff3b30;
  --red-dim: rgba(255, 59, 48, 0.12);
  --green: #00ff88;
  --green-dim: rgba(0, 255, 136, 0.12);
  --amber: #ffb800;
  --amber-dim: rgba(255, 184, 0, 0.12);
  --purple: #a78bfa;
  --purple-dim: rgba(167, 139, 250, 0.12);
  --gold: #c9a54e;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  /* Transitions */
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ────────────────────────────────────────────────────────────
   3. RESET & BASE
   ──────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  overflow: hidden;
}

::selection {
  background: rgba(0, 212, 255, 0.3);
  color: #fff;
}

/* ────────────────────────────────────────────────────────────
   4. FULL-SCREEN ANIMATED BACKGROUND
   ──────────────────────────────────────────────────────────── */
.login-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Dark animated grid */
.login-bg .grid-layer {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: gridPulse 8s ease-in-out infinite;
}

/* Ambient orb — top-left cyan */
.login-bg .orb-1 {
  position: absolute;
  width: 700px;
  height: 700px;
  top: -20%;
  left: -15%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  filter: blur(120px);
  animation: orbFloat 25s ease-in-out infinite;
}

/* Ambient orb — bottom-right purple */
.login-bg .orb-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.05) 0%, transparent 70%);
  filter: blur(120px);
  animation: orbFloat 30s ease-in-out infinite reverse;
}

/* Ambient orb — center red accent */
.login-bg .orb-3 {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 60%;
  left: 30%;
  background: radial-gradient(circle, rgba(255, 59, 48, 0.03) 0%, transparent 70%);
  filter: blur(100px);
  animation: orbFloat 35s ease-in-out infinite 3s;
}

/* Horizontal scanning beam */
.login-bg .scan-beam {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0, 212, 255, 0) 20%,
    rgba(0, 212, 255, 0.5) 50%,
    rgba(0, 212, 255, 0) 80%,
    transparent 100%
  );
  box-shadow: 0 0 30px 10px rgba(0, 212, 255, 0.08);
  animation: scanBeam 6s ease-in-out infinite;
}

/* Scanline overlay — CRT effect */
.login-bg .scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  pointer-events: none;
}

/* ────────────────────────────────────────────────────────────
   5. LOGIN PAGE LAYOUT
   ──────────────────────────────────────────────────────────── */
.login-page {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  flex-direction: column;
}

/* ────────────────────────────────────────────────────────────
   6. LOGIN CARD — Glassmorphism with corner decorations
   ──────────────────────────────────────────────────────────── */
.login-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: rgba(10, 25, 47, 0.75);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 44px 40px 36px;
  box-shadow:
    0 0 60px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(0, 212, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  animation: cardEntrance 0.8s ease-out;
  overflow: hidden;
}

/* Subtle top glow line */
.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.5;
}

/* Scanning line across the card */
.login-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 212, 255, 0.03) 50%,
    transparent 100%
  );
  background-size: 100% 40px;
  animation: cardScanLine 4s ease-in-out infinite;
  pointer-events: none;
}

/* ── Corner Decorations (bracket-style) ─────────────────── */
.corner-decor {
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 2;
}

/* Top-left corner */
.corner-decor.top-left {
  top: 10px;
  left: 10px;
  border-top: 2px solid rgba(0, 212, 255, 0.3);
  border-left: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 3px 0 0 0;
}

/* Top-right corner */
.corner-decor.top-right {
  top: 10px;
  right: 10px;
  border-top: 2px solid rgba(0, 212, 255, 0.3);
  border-right: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 0 3px 0 0;
}

/* Bottom-left corner */
.corner-decor.bottom-left {
  bottom: 10px;
  left: 10px;
  border-bottom: 2px solid rgba(0, 212, 255, 0.3);
  border-left: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 0 0 0 3px;
}

/* Bottom-right corner */
.corner-decor.bottom-right {
  bottom: 10px;
  right: 10px;
  border-bottom: 2px solid rgba(0, 212, 255, 0.3);
  border-right: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 0 0 3px 0;
}

/* ────────────────────────────────────────────────────────────
   7. LOGO AREA
   ──────────────────────────────────────────────────────────── */
.login-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}

.login-logo .logo-shield {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow:
    0 0 30px rgba(0, 212, 255, 0.2),
    0 0 60px rgba(0, 212, 255, 0.05);
  animation: shieldPulse 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.login-logo .logo-shield svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.login-logo .logo-shield img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* ────────────────────────────────────────────────────────────
   8. TITLES
   ──────────────────────────────────────────────────────────── */
.login-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  text-align: center;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.login-subtitle {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cyan);
  text-align: center;
  opacity: 0.7;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

/* Decorative divider under subtitle */
.login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border-hover), transparent);
}

.login-divider .divider-icon {
  width: 8px;
  height: 8px;
  border: 2px solid rgba(0, 212, 255, 0.3);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ────────────────────────────────────────────────────────────
   9. FORM FIELDS
   ──────────────────────────────────────────────────────────── */
.login-form {
  position: relative;
  z-index: 1;
}

.login-field {
  margin-bottom: 18px;
}

.login-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.input-wrapper {
  position: relative;
}

.input-wrapper .input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-tertiary);
  pointer-events: none;
  transition: color var(--transition-smooth);
}

.input-wrapper .input-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.login-input {
  width: 100%;
  padding: 13px 16px 13px 42px;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  background: rgba(6, 9, 15, 0.6);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: all var(--transition-smooth);
  outline: none;
}

.login-input::placeholder {
  color: var(--text-tertiary);
  font-size: 0.85rem;
}

.login-input:hover {
  border-color: var(--glass-border-hover);
}

.login-input:focus {
  border-color: var(--cyan);
  box-shadow:
    0 0 0 3px rgba(0, 212, 255, 0.1),
    0 0 20px rgba(0, 212, 255, 0.06);
  background: rgba(10, 25, 47, 0.8);
}

.login-input:focus + .input-icon,
.login-input:focus ~ .input-icon {
  color: var(--cyan);
}

/* Focus changes the label icon color through sibling selectors */
.input-wrapper:focus-within .input-icon {
  color: var(--cyan);
}

/* Password visibility toggle */
.input-wrapper .toggle-password {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-tertiary);
  cursor: pointer;
  padding: 2px;
  transition: color var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-wrapper .toggle-password:hover {
  color: var(--text-secondary);
}

.input-wrapper .toggle-password svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Error state */
.login-field.error .login-input {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.1);
}

.login-field .field-error {
  font-size: 0.72rem;
  color: var(--red);
  margin-top: 6px;
  display: none;
  align-items: center;
  gap: 4px;
}

.login-field.error .field-error {
  display: flex;
}

/* ────────────────────────────────────────────────────────────
   10. SUBMIT BUTTON — Cyan gradient with glow
   ──────────────────────────────────────────────────────────── */
.login-btn {
  width: 100%;
  padding: 14px 24px;
  margin-top: 6px;
  border: none;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--cyan), #0099cc);
  color: var(--bg-deep);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.25);
}

.login-btn:hover {
  box-shadow: 0 6px 30px rgba(0, 212, 255, 0.4);
  transform: translateY(-2px);
}

.login-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 12px rgba(0, 212, 255, 0.3);
}

/* Hover shimmer effect */
.login-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.5s ease;
}

.login-btn:hover::before {
  left: 100%;
}

.login-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none;
}

/* ────────────────────────────────────────────────────────────
   11. LOADING STATE — "Escaneando credenciais..."
   ──────────────────────────────────────────────────────────── */
.login-loading {
  display: none;
  text-align: center;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

.login-loading.active {
  display: block;
}

.login-loading .loading-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--cyan);
  letter-spacing: 0.05em;
}

/* Animated dots */
.login-loading .loading-dots {
  display: inline-flex;
  gap: 4px;
  margin-left: 4px;
}

.login-loading .loading-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  animation: dotPulse 1.4s ease-in-out infinite;
}

.login-loading .loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.login-loading .loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

/* Loading bar */
.login-loading .loading-bar {
  width: 200px;
  height: 2px;
  background: var(--glass-border);
  border-radius: 1px;
  margin: 14px auto 0;
  overflow: hidden;
  position: relative;
}

.login-loading .loading-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: loadingSlide 1.5s ease-in-out infinite;
}

/* ────────────────────────────────────────────────────────────
   12. ADDITIONAL ELEMENTS
   ──────────────────────────────────────────────────────────── */

/* "Remember me" checkbox */
.login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.remember-check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.remember-check input[type="checkbox"] {
  display: none;
}

.remember-check .checkmark {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid var(--glass-border-hover);
  background: rgba(6, 9, 15, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
  flex-shrink: 0;
}

.remember-check input[type="checkbox"]:checked + .checkmark {
  background: var(--cyan);
  border-color: var(--cyan);
}

.remember-check input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  color: var(--bg-deep);
  font-size: 0.65rem;
  font-weight: 800;
}

.remember-check .check-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.forgot-link {
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-smooth);
}

.forgot-link:hover {
  color: var(--cyan);
}

/* Security notice */
.security-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.security-notice .lock-icon {
  width: 12px;
  height: 12px;
  color: var(--green);
}

.security-notice .lock-icon svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.security-notice span {
  font-size: 0.68rem;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
}

/* ────────────────────────────────────────────────────────────
   13. FOOTER
   ──────────────────────────────────────────────────────────── */
.login-footer {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
}

.login-footer .footer-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-tertiary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.login-footer .footer-brand .brand-highlight {
  color: var(--cyan);
  opacity: 0.5;
}

.login-footer .footer-version {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  color: var(--text-tertiary);
  opacity: 0.5;
  margin-top: 4px;
}

/* ────────────────────────────────────────────────────────────
   14. ALERT / ERROR MESSAGES
   ──────────────────────────────────────────────────────────── */
.login-alert {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  font-size: 0.82rem;
  display: none;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  animation: fadeSlideUp 0.3s ease-out;
}

.login-alert.active {
  display: flex;
}

.login-alert.alert-error {
  background: var(--red-dim);
  border: 1px solid rgba(255, 59, 48, 0.15);
  color: var(--red);
}

.login-alert.alert-warning {
  background: var(--amber-dim);
  border: 1px solid rgba(255, 184, 0, 0.15);
  color: var(--amber);
}

.login-alert.alert-success {
  background: var(--green-dim);
  border: 1px solid rgba(0, 255, 136, 0.15);
  color: var(--green);
}

.login-alert .alert-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.login-alert .alert-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ────────────────────────────────────────────────────────────
   15. ANIMATIONS
   ──────────────────────────────────────────────────────────── */

/* Background orb float */
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(30px, -40px) scale(1.05); }
  50%      { transform: translate(-20px, 20px) scale(0.98); }
  75%      { transform: translate(40px, 10px) scale(1.03); }
}

/* Grid subtle breathing */
@keyframes gridPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.6; }
}

/* Horizontal scan beam sweeping down */
@keyframes scanBeam {
  0%   { top: -2px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: calc(100% + 2px); opacity: 0; }
}

/* Card entrance */
@keyframes cardEntrance {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Scan line inside the card */
@keyframes cardScanLine {
  0%   { background-position: 0 -40px; }
  50%  { background-position: 0 100%; }
  100% { background-position: 0 -40px; }
}

/* Shield logo pulse */
@keyframes shieldPulse {
  0%, 100% {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2), 0 0 60px rgba(0, 212, 255, 0.05);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.35), 0 0 80px rgba(0, 212, 255, 0.1);
  }
}

/* Loading dots */
@keyframes dotPulse {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.4;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Loading bar slide */
@keyframes loadingSlide {
  0%   { left: -40%; }
  100% { left: 100%; }
}

/* Fade + slide up */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ────────────────────────────────────────────────────────────
   16. RESPONSIVE
   ──────────────────────────────────────────────────────────── */

/* Tablets */
@media (max-width: 768px) {
  .login-card {
    max-width: 400px;
    padding: 36px 28px 30px;
  }

  .login-title {
    font-size: 1.35rem;
  }

  .login-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .login-page {
    padding: 16px;
    justify-content: center;
  }

  .login-card {
    max-width: 100%;
    padding: 30px 22px 26px;
    border-radius: var(--radius-lg);
  }

  .login-title {
    font-size: 1.2rem;
  }

  .login-subtitle {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
  }

  .login-logo .logo-shield {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

  .login-input {
    padding: 12px 14px 12px 38px;
    font-size: 0.85rem;
  }

  .login-btn {
    padding: 13px 20px;
    font-size: 0.85rem;
  }

  .login-options {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .login-footer {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 32px;
  }

  .corner-decor {
    width: 14px;
    height: 14px;
  }

  .corner-decor.top-left  { top: 6px; left: 6px; }
  .corner-decor.top-right { top: 6px; right: 6px; }
  .corner-decor.bottom-left  { bottom: 6px; left: 6px; }
  .corner-decor.bottom-right { bottom: 6px; right: 6px; }
}

/* Very small screens */
@media (max-width: 360px) {
  .login-card {
    padding: 24px 18px 22px;
  }

  .login-title {
    font-size: 1.1rem;
  }
}

/* Preference: reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ────────────────────────────────────────────────────────────
   END OF LOGIN.CSS
   DELTAHUB — Bureau de Dados e Inteligência © 2026
   ──────────────────────────────────────────────────────────── */
