/* ============================================
   Freediaria — Auth Pages (Modern Clean Design)
   ============================================ */

.auth-body {
  margin: 0;
  min-height: 100vh;
  background: #FAFBFC;
  position: relative;
}

/* Layout */

.auth-layout {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.auth-layout__header {
  margin-bottom: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.auth-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.auth-logo:hover {
  opacity: 0.85;
}

.auth-logo__mark {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 22px;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}

.auth-logo__text {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-gray-900);
  letter-spacing: -0.03em;
}

.auth-logo__img {
  height: 48px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Card */

.auth-card {
  width: 100%;
  max-width: 480px;
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--color-gray-100);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  animation: authCardIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes authCardIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.auth-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-gray-900);
  text-align: center;
  margin-bottom: 0.25rem;
}

.auth-card__subtitle {
  font-size: 0.938rem;
  color: var(--color-gray-500);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* Role selector — duas opções mutuamente exclusivas, tap-friendly, mobile-first */

.auth-role-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
}

.auth-role-card {
  position: relative;
  cursor: pointer;
  display: block;
  -webkit-tap-highlight-color: transparent;
}

.auth-role-card__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.auth-role-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  padding: 1.75rem 1rem 1.5rem;
  border: 2px solid var(--color-gray-200);
  border-radius: 18px;
  background: white;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-align: center;
  overflow: hidden;
}

.auth-role-card__body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 55%, rgba(0,0,0,0.02) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.auth-role-card:hover .auth-role-card__body {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.auth-role-card:active .auth-role-card__body {
  transform: translateY(0) scale(0.985);
}

.auth-role-card__input:focus-visible ~ .auth-role-card__body {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.35);
}

/* --- Worker (azul) --- */

.auth-role-card--worker .auth-role-card__body:hover {
  border-color: var(--color-primary-light);
  background: linear-gradient(180deg, #F0F6FF 0%, #FFFFFF 70%);
}

.auth-role-card--worker .auth-role-card__input:checked ~ .auth-role-card__body {
  border-color: var(--color-primary);
  background: linear-gradient(160deg, #DBEAFE 0%, #FFFFFF 75%);
  box-shadow: 0 12px 28px -10px rgba(37, 99, 235, 0.45),
              0 0 0 3px rgba(37, 99, 235, 0.18);
}

.auth-role-card--worker .auth-role-card__input:checked ~ .auth-role-card__body::before {
  opacity: 1;
}

/* --- Employer (verde) --- */

.auth-role-card--employer .auth-role-card__body:hover {
  border-color: var(--color-secondary-light, #34D399);
  background: linear-gradient(180deg, #ECFDF5 0%, #FFFFFF 70%);
}

.auth-role-card--employer .auth-role-card__input:checked ~ .auth-role-card__body {
  border-color: var(--color-secondary);
  background: linear-gradient(160deg, #D1FAE5 0%, #FFFFFF 75%);
  box-shadow: 0 12px 28px -10px rgba(16, 185, 129, 0.45),
              0 0 0 3px rgba(16, 185, 129, 0.18);
}

.auth-role-card--employer .auth-role-card__input:checked ~ .auth-role-card__body::before {
  opacity: 1;
}

/* --- Ícone --- */

.auth-role-card__icon {
  width: 92px;
  height: 92px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.25s ease,
              color 0.25s ease,
              box-shadow 0.25s ease;
  position: relative;
  z-index: 1;
}

.auth-role-card__icon svg {
  width: 60px;
  height: 60px;
}

.auth-role-card--worker .auth-role-card__icon {
  background: #EFF6FF;
  color: var(--color-primary);
}

.auth-role-card--worker .auth-role-card__input:checked ~ .auth-role-card__body .auth-role-card__icon {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #FFFFFF;
  transform: scale(1.04);
  box-shadow: 0 10px 22px -6px rgba(37, 99, 235, 0.5);
}

.auth-role-card--employer .auth-role-card__icon {
  background: #ECFDF5;
  color: var(--color-secondary);
}

.auth-role-card--employer .auth-role-card__input:checked ~ .auth-role-card__body .auth-role-card__icon {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  color: #FFFFFF;
  transform: scale(1.04);
  box-shadow: 0 10px 22px -6px rgba(16, 185, 129, 0.5);
}

/* --- Texto --- */

.auth-role-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-gray-900);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.auth-role-card__desc {
  font-size: 0.813rem;
  color: var(--color-gray-500);
  line-height: 1.35;
  margin-top: -0.375rem;
  position: relative;
  z-index: 1;
  max-width: 18ch;
}

/* --- Checkmark de selecionado (canto superior direito) --- */

.auth-role-card__check {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: transparent;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 2;
}

.auth-role-card__check svg {
  width: 14px;
  height: 14px;
}

.auth-role-card--worker .auth-role-card__input:checked ~ .auth-role-card__body .auth-role-card__check {
  background: var(--color-primary);
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 4px 10px -2px rgba(37, 99, 235, 0.5);
}

.auth-role-card--employer .auth-role-card__input:checked ~ .auth-role-card__body .auth-role-card__check {
  background: var(--color-secondary);
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 4px 10px -2px rgba(16, 185, 129, 0.5);
}

@media (prefers-reduced-motion: reduce) {
  .auth-role-card__body,
  .auth-role-card__icon,
  .auth-role-card__check {
    transition: none;
  }
}

/* Inputs */

.auth-form .form-group {
  margin-bottom: 1.125rem;
}

.auth-form .form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gray-600);
  margin-bottom: 6px;
  display: block;
}

.auth-form .form-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 1.5px solid var(--color-gray-200);
  border-radius: 12px;
  background: white;
  color: var(--color-gray-900);
  transition: all 0.2s ease;
  outline: none;
  font-family: var(--font-sans);
}

.auth-form .form-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.auth-form .form-input::placeholder {
  color: var(--color-gray-400);
}

.auth-form .form-hint {
  display: block;
  font-size: 12px;
  color: var(--color-gray-400);
  margin-top: 4px;
}

/* Checkbox row */

.form-group--checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group--checkbox .form-label--checkbox {
  margin-bottom: 0;
  font-weight: 500;
  color: var(--color-gray-600);
  cursor: pointer;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

/* Checkbox de termos */

.auth-terms {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  cursor: pointer;
  font-size: 0.813rem;
  color: var(--color-gray-600);
  line-height: 1.5;
}

.auth-terms__input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--color-primary);
  cursor: pointer;
  flex-shrink: 0;
}

.auth-terms__link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

.auth-terms__link:hover {
  text-decoration: underline;
}

/* Submit */

.auth-form .form-actions {
  margin-top: 1.75rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  transition: all 0.2s ease;
}

.btn--primary {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
  opacity: 1;
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}

/* Garante que o submit do auth-form (Entrar / Criar conta) renderize com cor primária sólida */
.auth-form .btn--primary,
.auth-form input[type="submit"].btn--primary {
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  opacity: 1;
}

.auth-form .btn--primary:hover,
.auth-form input[type="submit"].btn--primary:hover {
  background: var(--color-primary-dark);
}

.auth-form .btn--primary:disabled,
.auth-form input[type="submit"].btn--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn--success {
  background: var(--color-secondary);
  color: white;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

.btn--success:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
}

/* Auth links */

.auth-links {
  text-align: center;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.auth-links a,
.auth-links__link {
  font-size: 14px;
  color: var(--color-gray-500);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.auth-links a:hover,
.auth-links__link:hover {
  color: var(--color-primary);
}

/* Footer */

.auth-layout__footer {
  margin-top: 2rem;
}

.auth-footer-text {
  font-size: 13px;
  color: var(--color-gray-400);
}

/* O convite de instalar no rodape da tela de entrada (ZONA B). Discreto de
   proposito: nao pode competir com "Entrar"/"Criar conta". */
.auth-instalar { margin-bottom: 0.75rem; }
.auth-instalar__btn { font-size: 13px; padding: 0.5rem 1rem; }

/* Flash inside card */

.auth-card .flash {
  margin-bottom: 1.25rem;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  animation: none;
  box-shadow: none;
}

/* Error explanation inside card */

.auth-card #error_explanation {
  margin-bottom: 1.25rem;
}

/* Divider */

.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--color-gray-400);
  font-size: 13px;
  font-weight: 500;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-gray-200);
}

/* Error messages */

.form-errors {
  background: #FEF2F2;
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}

.form-errors__title {
  font-size: 14px;
  font-weight: 600;
  color: #DC2626;
  margin-bottom: 0.5rem;
}

.form-errors__list {
  list-style: disc;
  padding-left: 1.25rem;
}

.form-errors__item {
  font-size: 13px;
  color: var(--color-danger);
  margin-bottom: 2px;
}

/* Danger zone (account deletion) */

.auth-danger-zone {
  margin-top: 2rem;
  padding: 1.25rem;
  border: 1px solid var(--color-gray-200);
  border-radius: 12px;
  background: var(--color-gray-50);
}

.auth-danger-zone__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-danger);
  margin-bottom: 0.25rem;
}

.auth-danger-zone__text {
  font-size: 13px;
  color: var(--color-gray-500);
  margin-bottom: 1rem;
}

/* Responsive */

@media (max-width: 520px) {
  .auth-card {
    padding: 1.75rem 1.25rem;
  }

  .auth-card__title {
    font-size: 1.25rem;
  }

  .auth-logo__mark {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .auth-logo__text {
    font-size: 20px;
  }
}

/* As regras de encolhimento dos cartões de papel (ícone de 92px -> 76 -> 64 e
   `.auth-role-card__desc { display: none }` abaixo de 360px) saíram daqui: o
   cartão deixou de ser um quadrado de 145x205 lado a lado e virou uma linha de
   largura total, no molde dos cartões de chave PIX. O que ele precisa em tela
   estreita está declarado junto com o novo molde, no fim deste arquivo. */

/* Olhinho de senha (password-toggle) */
.pwd-wrap { position: relative; }
.pwd-wrap .form-input { padding-right: 46px; }
.pwd-eye { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; padding: 0; background: transparent; border: none; border-radius: 8px; color: #9ca3af; cursor: pointer; transition: color .15s, background .15s; }
.pwd-eye:hover { color: #4b5563; background: rgba(0,0,0,.05); }
.pwd-eye:focus-visible { outline: 2px solid #2563eb; outline-offset: 1px; }

/* Honeypot anti-bot (SignupSpamGuard). Fora da tela em vez de display:none —
   alguns bots pulam campos com display:none, mas preenchem estes. */
.signup-guard { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ==========================================================================
   A ENTRADA HERDA A MOLDURA DO APP — ZONA A

   O caminho landing (navy, marketing) -> auth (cinza, cartão, sem marca) ->
   dashboard (claro, app) trocava de cara DUAS vezes, com três logotipos
   diferentes. Aqui a tela de auth passa a usar o MESMO fundo, o MESMO raio e a
   MESMA sombra dos cartões do dashboard, para que o cadastro já pareça "dentro
   do app". Os tokens vêm da ZONA D (app_shell.css, carregado por
   layouts/devise.html.erb antes deste arquivo); os valores de reserva nos
   `var()` existem porque este arquivo também é servido em contextos onde a
   casca pode não estar carregada — e um var() sem fallback que não resolve
   apaga a declaração inteira (raio 0, sombra nenhuma).
   ========================================================================== */

.auth-body {
  /* #F8FAFC — o mesmo cinza do .dash-content. Era #FAFBFC, um cinza só dele. */
  background: var(--color-gray-50);
}

.auth-card {
  border-radius: var(--fd-r-superficie, 16px);
  box-shadow: var(--fd-elev-1, 0 1px 2px rgba(15, 23, 42, .04), 0 8px 24px -12px rgba(15, 23, 42, .16));
  border: 1px solid var(--color-gray-100);
}

/* --------------------------------------------------------------------------
   UM LOCKUP SÓ. O símbolo é o mesmo arquivo que o dashboard usa na barra
   lateral — a marca não muda de forma entre entrar e estar dentro.
   -------------------------------------------------------------------------- */
.auth-logo__img { height: 40px; max-width: 180px; }

/* --------------------------------------------------------------------------
   OS DOIS CARTÕES DE PAPEL, NO PADRÃO DOS CARTÕES DE CHAVE PIX

   Eram dois blocos de 145x205px lado a lado, com ícone de 92px e descrição de
   12px — e no celular estreito a descrição sumia por display:none. Agora são
   duas linhas de largura total, no molde que já funciona em
   /dashboard/dados-bancarios: ícone, título 17/600 e UMA linha de 13px.
   -------------------------------------------------------------------------- */
.auth-role-selector {
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.auth-role-card__body {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icone titulo"
    "icone descr";
  align-items: center;
  column-gap: 14px;
  row-gap: 2px;
  text-align: left;
  padding: 12px 14px;
  min-height: var(--fd-alvo, 44px);
  border-radius: var(--fd-r-controle, 12px);
  border-width: 1.5px;
}

.auth-role-card__icon {
  grid-area: icone;
  width: 44px;
  height: 44px;
  border-radius: var(--fd-r-controle, 12px);
}
.auth-role-card__icon svg { width: 24px; height: 24px; }

.auth-role-card__title {
  grid-area: titulo;
  align-self: end;
  font-size: 17px;
  font-weight: 600;
}

.auth-role-card__desc {
  grid-area: descr;
  align-self: start;
  display: block;
  font-size: 13px;
  margin-top: 0;
  max-width: none;
}

/* A marca de selecionado volta a flutuar no canto do cartão em vez de ocupar
   uma coluna da grade: numa linha de ~300px, 36px de coluna reservada para uma
   decoração eram a diferença entre a descrição caber numa linha ou em duas. */
.auth-role-card__check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
}
.auth-role-card__check svg { width: 12px; height: 12px; }

/* Selecionar um papel NÃO é dinheiro: os dois cartões acendem em azul. O que
   distingue os lados é o ícone (uma pessoa / um grupo), não a cor semântica. */
.auth-role-card--employer .auth-role-card__body:hover {
  border-color: var(--color-primary-light);
  background: linear-gradient(180deg, #F0F6FF 0%, #FFFFFF 70%);
}
.auth-role-card--employer .auth-role-card__input:checked ~ .auth-role-card__body {
  border-color: var(--color-primary);
  background: linear-gradient(160deg, #DBEAFE 0%, #FFFFFF 75%);
  box-shadow: 0 8px 20px -10px rgba(37, 99, 235, .45),
              0 0 0 3px rgba(37, 99, 235, .18);
}
.auth-role-card--employer .auth-role-card__icon {
  background: #EFF6FF;
  color: var(--color-primary);
}
.auth-role-card--employer .auth-role-card__input:checked ~ .auth-role-card__body .auth-role-card__icon {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #FFFFFF;
  transform: scale(1.02);
  box-shadow: 0 8px 18px -6px rgba(37, 99, 235, .5);
}
.auth-role-card--employer .auth-role-card__input:checked ~ .auth-role-card__body .auth-role-card__check {
  background: var(--color-primary);
  box-shadow: 0 4px 10px -2px rgba(37, 99, 235, .5);
}

/* --------------------------------------------------------------------------
   PISO DE TEXTO E DE TOQUE

   Rótulo em 13px e olho da senha de 34px eram os dois piores casos medidos.
   A altura vem de padding — subir font-size destruiria a hierarquia.
   -------------------------------------------------------------------------- */
.auth-form .form-label { font-size: 14px; }
.auth-form .form-hint  { font-size: 13px; line-height: 1.45; color: var(--color-gray-500); }
.auth-form .form-input { min-height: var(--fd-alvo, 44px); }

.pwd-eye { width: 44px; height: 44px; right: 2px; }

/* A caixinha dos termos tinha 16px de lado; a área tocável agora é o rótulo
   inteiro. .fd-alvo-44 é utilitário da ZONA D — o min-height daqui é do
   .auth-terms e vale mesmo se a casca não estiver na página. */
.auth-terms {
  min-height: 44px;
  align-items: center;
  padding: 6px 0;
  font-size: 14px;
}
.auth-terms__input { width: 20px; height: 20px; margin-top: 0; }

.form-group--checkbox { min-height: 44px; }
.form-checkbox { width: 20px; height: 20px; }
.form-group--checkbox .form-label--checkbox { font-size: 14px; }

/* Os links do rodapé do cartão tinham 22px de altura. */
.auth-links { gap: 0; }
.auth-links a,
.auth-links__link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* "Criar conta grátis" é o único caminho para o cadastro nesta tela: ganha
   contorno de botão-fantasma para deixar de se confundir com texto legal. */
/* O seletor precisa do `a` porque `.auth-links a` (0,1,1) ganharia de uma
   classe sozinha e devolveria o cinza de link secundário. */
.auth-links a.auth-links__link--acao,
.auth-links__link--acao {
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--fd-r-controle, 12px);
  color: var(--color-primary);
  font-weight: 600;
  padding: 0 16px;
}
.auth-links a.auth-links__link--acao:hover,
.auth-links__link--acao:hover {
  border-color: var(--color-primary);
  background: var(--color-primary-50);
}

/* Cadastro se distingue do login por PESO e TAMANHO, nunca por cor: os dois
   botões de ação da entrada são azuis (o verde do sistema é dinheiro). */
.btn--destaque {
  min-height: 52px;
  font-size: 17px;
  font-weight: 700;
}

/* A descrição do cartão de papel volta a existir em tela estreita: agora ela
   cabe, porque o cartão ocupa a largura toda. */
@media (max-width: 360px) {
  .auth-role-card__desc { display: block; }
  .auth-role-card__icon { width: 40px; height: 40px; }
  .auth-role-card__icon svg { width: 22px; height: 22px; }
}

/* A marca também é um alvo de toque. */
.auth-logo { min-height: 44px; }

/* --------------------------------------------------------------------------
   O RÁDIO PRECISA EXISTIR NA TELA PARA PODER SER EXIGIDO

   `.auth-role-card__input` era 0x0. Um campo `required` de tamanho zero é o
   caso clássico em que o Chrome recusa o envio e não consegue ancorar o balão
   de validação ("an invalid form control is not focusable") — o formulário
   morre em silêncio. Ele continua invisível (opacity 0, sem captar toque: quem
   recebe o toque é o rótulo), mas passa a ocupar 1px dentro do cartão, junto
   ao ícone, que é onde o balão deve aparecer.
   -------------------------------------------------------------------------- */
.auth-role-card__input {
  width: 1px;
  height: 1px;
  left: 20px;
  bottom: 12px;
}
