@keyframes shine {
    to {
      background-position: 200% center;
    }
  }
  
  
  .app-brand-text {
  
    background: linear-gradient(to right, #9337f0 20%, #9337f0 40%, #9337f0 60%, #9337f0 80%);
    background-size: 200% auto;
  
    color: #000;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3.5s linear infinite;
  }


  ::selection {
    background-color: #9337f0; /* Cor de fundo da seleção */
    color: #ffffff; /* Cor do texto selecionado */
}

input:focus {

  outline: none; /* Remover contorno padrão do navegador */
}