input{
  border: none;
  font-size: 0.7em !important;
  background: transparent !important;
/* centraliza o texto digitado */
  color: #000000;
}

/* Placeholder centralizado */
input::placeholder {

  color: #00000040; /* opcional */
}

/* Remove outline e mantém transparência */
input:focus,
input:focus-visible,
select:focus,
select:focus-visible {
  outline: none;
  background: transparent !important;
}

/* Remove fundo amarelo do autofill (Chrome) */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: #00000040 !important; /* cor do texto */
}

/* Se quiser placeholder centralizado também no focus */

/* select fechado (continua branco) */
select {
  border: none;
  font-size: 0.7em !important;
  background: transparent !important;
    color: #00000040;
}

/* opções da lista (dropdown) */
select option {
   color: #333;
  background: #f5f5f5;
}