/* Fix for input autocomplete suggestions */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  -webkit-text-fill-color: #333 !important;
  background-color: white !important;
  color: #333 !important;
}

/* Fix for floating labels with autofill */
.form-floating input:-webkit-autofill ~ label,
.form-floating input:-webkit-autofill:focus ~ label {
  color: #6c757d !important;
  background-color: white !important;
}

/* General input text color fix */
.form-control {
  color: #333 !important;
  background-color: white !important;
}

.form-control:focus {
  color: #333 !important;
  background-color: white !important;
}
