input {
  border: none;
  font-size: 0.75em !important;
  background-color: transparent !important;
  text-align: left;          /* alinhado à esquerda */
  color: #ffffff;
  padding-left: 5px;         /* opcional: dá respiro do lado esquerdo */
}

input:focus,
input:focus-visible {
  outline: none;
  font-size: 0.75em !important;
  background-color: transparent !important;
  color: #ffffff;
  text-align: left;
}

/* Placeholder alinhado à esquerda */
input::placeholder {
  text-align: left;
  color: #ffffffaa;
}

/* Remove autofill amarelo do 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: #ffffff !important;
}

/* Select mantendo padrão */
select {
  border: none;
  font-size: 1em !important;
  background: transparent !important;
  color: #ffffff;
  text-align: left;
}

select:focus,
select:focus-visible {
  outline: none;
}

