/* ==========================================================================
   DESIGN SYSTEM - TELA DE LOGIN & CADASTRO CONASEMS EAD (REFINED UI/UX)
   Padrão Visual: Clean GovTech • Clerk / Linear Inspired • Ultra Balanced
   Paleta: Deep Navy (#081E35), Royal Blue (#0F5394), Teal (#009688)
   ========================================================================== */

:root {
  /* Cores Institucionais e Acentos */
  --brand-navy: #081e35;
  --brand-blue-dark: #0b3b6d;
  --brand-blue: #0f5394;
  --brand-blue-hover: #135da3;
  --brand-blue-light: #e8f1fa;
  --brand-teal-dark: #007a6e;
  --brand-teal: #009688;
  --brand-teal-light: #2dd4bf;

  /* Cores Neutras / Slate */
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  /* Tipografia */
  --font-family-base: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;

  /* Sombras & Profundidade */
  --shadow-card: 0 20px 40px -12px rgba(15, 23, 42, 0.12), 0 1px 3px 0 rgba(15, 23, 42, 0.05);
  --shadow-btn: 0 4px 14px -2px rgba(15, 83, 148, 0.32);
  --shadow-btn-hover: 0 6px 18px -2px rgba(15, 83, 148, 0.42);
  --shadow-tab-active: 0 2px 6px -1px rgba(15, 23, 42, 0.08), 0 1px 2px -1px rgba(15, 23, 42, 0.04);

  /* Dimensões & Bordas Base */
  --radius-card: 20px;
  --radius-input: 10px;
  --radius-btn: 10px;
  --radius-pill: 9999px;
  --input-height: 46px;
  --btn-height: 46px;
}

/* --------------------------------------------------------------------------
   Reset & Configurações Globais
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-family-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--slate-100);
  height: 100%;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--slate-100);
  background-image: radial-gradient(at 10% 10%, rgba(15, 83, 148, 0.05) 0px, transparent 50%),
    radial-gradient(at 90% 90%, rgba(0, 150, 136, 0.05) 0px, transparent 50%);
  color: var(--slate-900);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 2.5vh, 24px) clamp(12px, 2vw, 20px);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Layout Estrutural do Card Principal
   -------------------------------------------------------------------------- */
.login-wrapper {
  width: 100%;
  max-width: 1060px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  width: 100%;
  background-color: #ffffff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  position: relative;
}

/* --------------------------------------------------------------------------
   1. Painel Esquerdo (Identidade Institucional)
   -------------------------------------------------------------------------- */
.login-banner-side {
  background: linear-gradient(
    150deg,
    var(--brand-navy) 0%,
    var(--brand-blue-dark) 40%,
    var(--brand-blue) 78%,
    var(--brand-teal-dark) 100%
  );
  color: #ffffff;
  padding: clamp(24px, 3.5vh, 36px) clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

/* Mesh Glow Decorativo de Fundo */
.banner-mesh-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none;
  opacity: 0.6;
}

.banner-mesh-1 {
  top: -50px;
  right: -50px;
  width: 260px;
  height: 260px;
  background: rgba(45, 212, 191, 0.22);
}

.banner-mesh-2 {
  bottom: -40px;
  left: -40px;
  width: 240px;
  height: 240px;
  background: rgba(15, 83, 148, 0.4);
}

.banner-mesh-3 {
  top: 45%;
  left: 25%;
  width: 160px;
  height: 160px;
  background: rgba(0, 150, 136, 0.18);
}

.login-banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(14px, 2vh, 20px);
}

/* Header do Banner */
.banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  padding: 4px 11px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #ffffff;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.banner-tag i {
  color: var(--brand-teal-light);
  font-size: 11px;
}

.login-banner-title {
  font-size: clamp(20px, 2.2vw, 25px);
  font-weight: 800;
  line-height: 1.18;
  color: #ffffff;
  letter-spacing: -0.4px;
  margin-bottom: 6px;
}

.login-banner-subtitle {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 400;
  max-width: 440px;
  text-wrap: pretty;
}

/* Grade de Métricas & Autoridade (Social Proof) */
.banner-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px 10px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6px 4px;
}

.stat-pill:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 12.5px;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  letter-spacing: -0.2px;
  line-height: 1.2;
}

.stat-number i {
  color: var(--brand-teal-light);
  font-size: 11px;
}

.stat-label {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  margin-top: 3px;
  line-height: 1.25;
  text-align: center;
}

/* Cards Translúcidos no Banner (Glassmorphism) */
.login-features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateX(3px);
}

.feature-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(45, 212, 191, 0.16);
  border: 1px solid rgba(45, 212, 191, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-teal-light);
  font-size: 13px;
  flex-shrink: 0;
}

.feature-info {
  flex: 1;
}

.feature-title {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
  letter-spacing: -0.1px;
}

.feature-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.35;
  margin: 0;
  text-wrap: pretty;
}

/* Rodapé do Banner */
.login-banner-footer {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.login-banner-footer i {
  font-size: 11px;
  color: var(--brand-teal-light);
}

/* --------------------------------------------------------------------------
   2. Painel do Formulário
   -------------------------------------------------------------------------- */
.login-form-side {
  padding: clamp(24px, 3.5vh, 36px) clamp(22px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #ffffff;
}

.login-form-inner {
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
}

/* Branding Oficial CONASEMS */
.login-brand-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: clamp(14px, 2vh, 18px);
}

.login-brand-logo {
  height: auto;
  width: 165px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.login-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-blue);
  background: var(--brand-blue-light);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}

.portal-indicator-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-teal);
  display: inline-block;
}

.login-brand-subtitle {
  letter-spacing: -0.1px;
}

/* Seletor de Abas (Segmented Control Pill) */
.login-tabs {
  display: flex;
  background-color: var(--slate-100);
  border-radius: 10px;
  padding: 3px;
  gap: 3px;
  margin-bottom: clamp(12px, 1.8vh, 16px);
  border: 1px solid var(--slate-200);
}

.login-tab-btn {
  flex: 1;
  height: 36px;
  border: none;
  background: transparent;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-500);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
  font-family: inherit;
  user-select: none;
}

.login-tab-btn:hover:not(.active) {
  color: var(--slate-800);
  background-color: rgba(255, 255, 255, 0.6);
}

.login-tab-btn.active {
  background-color: #ffffff;
  color: var(--brand-blue);
  font-weight: 700;
  box-shadow: var(--shadow-tab-active);
}

.login-tab-btn i {
  font-size: 11.5px;
}

/* Introdução de Seção */
.section-intro {
  margin-bottom: clamp(10px, 1.5vh, 14px);
}

.section-title {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.3px;
  margin-bottom: 2px;
}

.section-subtitle {
  font-size: 12px;
  color: var(--slate-500);
  line-height: 1.35;
}

/* Formulários & Campos de Entrada */
.login-form-group {
  margin-bottom: clamp(9px, 1.4vh, 12px);
  text-align: left;
}

.login-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 4px;
}

.login-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

/* Seletor Segmentado de Tipo de Login (CPF / E-mail) */
.login-tipo-segmented {
  display: inline-flex;
  align-items: center;
  background-color: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: 7px;
  padding: 2px;
  gap: 2px;
}

.tipo-pill-btn {
  border: none;
  background: transparent;
  padding: 2.5px 9px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--slate-500);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4.5px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  user-select: none;
  line-height: 1.25;
}

.tipo-pill-btn:hover:not(.active) {
  color: var(--slate-800);
  background-color: rgba(255, 255, 255, 0.6);
}

.tipo-pill-btn.active {
  background-color: #ffffff;
  color: var(--brand-blue);
  font-weight: 700;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
}

.tipo-pill-btn i {
  font-size: 10px;
}

.required-asterisk {
  color: #ef4444;
  margin-left: 2px;
}

.login-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.login-input-icon {
  position: absolute;
  left: 12px;
  color: var(--slate-400);
  font-size: 13.5px;
  pointer-events: none;
  transition: color 0.2s ease;
}

.login-input {
  width: 100%;
  height: var(--input-height);
  padding: 6px 12px 6px 36px;
  font-size: 13.5px;
  border: 1.5px solid var(--slate-300);
  border-radius: var(--radius-input);
  background-color: #ffffff;
  color: var(--slate-900);
  transition: all 0.2s ease;
  font-family: inherit;
  -webkit-appearance: none;
}

.login-input::placeholder {
  color: var(--slate-400);
  font-size: 12.5px;
}

.login-input:hover:not(:disabled):not(:focus) {
  border-color: #94a3b8;
}

.login-input:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(15, 83, 148, 0.12);
}

.login-input:focus ~ .login-input-icon,
.login-input-wrapper:focus-within .login-input-icon {
  color: var(--brand-blue);
}

.login-input:disabled {
  background-color: var(--slate-100);
  color: var(--slate-500);
  cursor: not-allowed;
  border-color: var(--slate-200);
}

.input-hint {
  display: block;
  font-size: 10.5px;
  color: var(--slate-500);
  margin-top: 3px;
}

/* Botões de Ação */
.login-submit-btn {
  width: 100%;
  height: var(--btn-height);
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-btn);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-btn);
  transition: all 0.2s ease;
  font-family: inherit;
  margin-top: 4px;
}

.login-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn-hover);
  background: linear-gradient(135deg, var(--brand-blue-hover) 0%, #093c6e 100%);
}

.login-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(15, 83, 148, 0.2);
}

.login-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.login-btn-secondary {
  background: var(--slate-100) !important;
  color: var(--slate-700) !important;
  box-shadow: none !important;
  border: 1px solid var(--slate-200) !important;
  margin-top: 6px;
}

.login-btn-secondary:hover {
  background: var(--slate-200) !important;
  color: var(--slate-900) !important;
}

/* Card de CPF Localizado (Dinâmico) */
.cpf-found-card {
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 10px;
}

.cpf-found-header {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #059669;
  font-size: 11.5px;
  font-weight: 700;
  margin-bottom: 6px;
}

.cpf-found-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 8px;
  font-size: 11px;
  color: var(--slate-600);
}

.cpf-found-item strong {
  color: var(--slate-800);
  font-weight: 600;
}

/* Termo de Consentimento LGPD */
.lgpd-consent-box {
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  padding: 8px 10px;
  margin: 10px 0;
}

.lgpd-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 10.5px;
  color: var(--slate-600);
  line-height: 1.35;
  cursor: pointer;
}

.lgpd-checkbox-label input {
  margin-top: 2px;
  accent-color: var(--brand-blue);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  cursor: pointer;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.info-banner-alert {
  background-color: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 10px;
  font-size: 11px;
  color: #92400e;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.35;
}

.info-banner-alert i {
  font-size: 12px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* Rodapé Mobile */
.login-mobile-footer {
  display: none;
}

/* --------------------------------------------------------------------------
   Correções de Compatibilidade com SweetAlert2
   -------------------------------------------------------------------------- */
body.swal2-shown {
  padding-right: 0 !important;
  overflow-y: auto !important;
}

body.swal2-height-auto {
  height: 100% !important;
  min-height: 100vh !important;
}

.swal2-container {
  z-index: 9999 !important;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.swal2-popup {
  border-radius: 16px !important;
  font-family: var(--font-family-base) !important;
  padding: 18px !important;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.2) !important;
}

.swal2-title {
  font-size: 17px !important;
  font-weight: 800 !important;
  color: var(--slate-900) !important;
}

.swal2-html-container {
  font-size: 12.5px !important;
  color: var(--slate-600) !important;
}

.swal2-styled.swal2-confirm {
  border-radius: 8px !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  font-size: 12.5px !important;
}

/* --------------------------------------------------------------------------
   COMPACTAÇÃO RESPONSIVA PARA LAPTOPS (1366x768 / 1280x800)
   Garante ZERO scroll vertical na altura útil padrão (~580px - 650px)
   -------------------------------------------------------------------------- */
@media (min-width: 901px) and (max-height: 760px) {
  :root {
    --input-height: 42px;
    --btn-height: 42px;
  }

  body {
    padding: 10px;
  }

  .login-banner-side {
    padding: 20px 24px;
    gap: 10px;
  }

  .login-banner-title {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .login-banner-subtitle {
    font-size: 11.5px;
    line-height: 1.35;
  }

  .banner-stats-grid {
    padding: 6px 8px;
    gap: 6px;
  }

  .stat-number {
    font-size: 12px;
  }

  .stat-label {
    font-size: 9.5px;
  }

  .login-features-list {
    gap: 6px;
  }

  .feature-card {
    padding: 7px 10px;
  }

  .feature-icon-box {
    width: 28px;
    height: 28px;
    font-size: 11.5px;
  }

  .feature-title {
    font-size: 11.5px;
  }

  .feature-desc {
    font-size: 10.5px;
  }

  .login-form-side {
    padding: 20px 24px;
  }

  .login-brand-header {
    margin-bottom: 12px;
    gap: 5px;
  }

  .login-brand-logo {
    width: 148px;
  }

  .login-tabs {
    margin-bottom: 12px;
  }

  .login-tab-btn {
    height: 33px;
    font-size: 11.5px;
  }

  .section-intro {
    margin-bottom: 10px;
  }

  .section-title {
    font-size: 15px;
  }

  .section-subtitle {
    font-size: 11.5px;
  }

  .login-form-group {
    margin-bottom: 8px;
  }

  .login-input {
    font-size: 13px;
  }

  .cpf-found-card {
    padding: 8px 10px;
    margin-bottom: 8px;
  }

  .lgpd-consent-box {
    margin: 8px 0;
    padding: 6px 8px;
  }
}

/* --------------------------------------------------------------------------
   EXPERIÊNCIA TABLETS INTERMEDIÁRIOS (851px - 1024px)
   -------------------------------------------------------------------------- */
@media (min-width: 851px) and (max-width: 1024px) {
  .login-wrapper {
    max-width: 920px;
  }
  .login-container {
    grid-template-columns: 1.1fr 1fr;
  }
  .login-banner-side {
    padding: 26px;
  }
  .login-form-side {
    padding: 26px 22px;
  }
}

/* --------------------------------------------------------------------------
   EXPERIÊNCIA MOBILE DEDICADA (< 850px)
   Mobile-First real: Foco total no formulário, sem atrito e sem scroll duplo
   -------------------------------------------------------------------------- */
@media (max-width: 850px) {
  body {
    padding: 16px 12px;
    align-items: center;
    background-color: var(--slate-100);
  }

  .login-wrapper {
    max-width: 440px;
  }

  .login-container {
    display: block;
    border-radius: 18px;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--slate-200);
  }

  /* Oculta banner lateral no mobile */
  .login-banner-side {
    display: none !important;
  }

  .login-form-side {
    padding: 28px 20px;
  }

  .login-form-inner {
    max-width: 100%;
  }

  /* Centraliza branding e introdução no mobile */
  .login-brand-header {
    align-items: center;
    text-align: center;
    margin-bottom: 18px;
  }

  .login-brand-logo {
    width: 170px;
  }

  .section-intro {
    text-align: center;
    margin-bottom: 16px;
  }

  .section-title {
    font-size: 17.5px;
  }

  .section-subtitle {
    font-size: 12px;
  }

  .login-tabs {
    height: 42px;
    margin-bottom: 16px;
  }

  .login-tab-btn {
    height: 100%;
    font-size: 12.5px;
  }

  /* Previne auto-zoom indesejado no iOS Safari */
  .login-input {
    height: 48px;
    font-size: 16px;
    padding-left: 40px;
  }

  .login-input-icon {
    left: 14px;
    font-size: 15px;
  }

  .login-submit-btn {
    height: 48px;
    font-size: 14px;
    margin-top: 6px;
  }

  /* Rodapé Institucional Mobile */
  .login-mobile-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 11px;
    color: var(--slate-400);
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid var(--slate-200);
    text-align: center;
    line-height: 1.35;
  }

  .login-mobile-footer i {
    color: var(--brand-teal);
    font-size: 12px;
  }
}

/* --------------------------------------------------------------------------
   Smartphones Pequenos (< 380px)
   -------------------------------------------------------------------------- */
@media (max-width: 380px) {
  body {
    padding: 8px 6px;
  }

  .login-form-side {
    padding: 20px 14px;
  }

  .login-brand-logo {
    width: 145px;
  }

  .login-tabs {
    gap: 2px;
    padding: 2px;
  }

  .login-tab-btn {
    font-size: 11.5px;
    gap: 4px;
    padding: 0 4px;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cpf-found-grid {
    grid-template-columns: 1fr;
  }
}
