/* Prevent browser extensions from interfering with forms */
input[type="email"],
input[type="text"],
input[type="password"],
input[type="tel"],
input[type="number"],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Hide browser extension icons and attributes */
input::-webkit-credentials-auto-fill-button,
input::-webkit-strong-password-auto-fill-button {
  display: none !important;
}

/* Prevent autofill styling */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  -webkit-text-fill-color: inherit !important;
}

/* Ensure consistent rendering */
.form-input {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
