input,
select {
  border: none;
  font-size: 1em !important;
  background: transparent !important;
  text-align: left; /* centraliza o texto digitado */
}

/* Placeholder centralizado */
input::placeholder {
  text-align: left;
  color: #999; /* 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: #000 !important; /* cor do texto */
}

/* Se quiser placeholder centralizado também no focus */
input:focus::placeholder {
  text-align: left;
}
