form#form input,
form#form select,
form#form textarea { 
  color: #1f2937 !important;
}
.dark form#form input,
.dark form#form select,
.dark form#form textarea { 
  color: #ffffff !important;
}
form#form ::placeholder { color: #6b7280 !important; }
.dark form#form ::placeholder { color: #9ca3af !important; }
.invalid-feedback, .empty-feedback { display: none; }
.was-validated :placeholder-shown:invalid ~ .empty-feedback { display: block; }
.was-validated :not(:placeholder-shown):invalid ~ .invalid-feedback { display: block; }
.is-invalid, .was-validated :invalid { border-color: #dc3545 !important; background-color: #fef2f2 !important; }
.dark .was-validated :invalid { background-color: rgba(220, 53, 69, 0.1) !important; }
.was-validated :valid { border-color: #10b981 !important; }
.loading-text::after { content: ''; animation: dots 1.5s steps(4, end) infinite; }
@keyframes dots { 0%, 20% { content: '.'; } 40% { content: '..'; } 60% { content: '...'; } 80%, 100% { content: ''; } }
form#form select option { color: #1f2937; background: white; }
.dark form#form select option { color: #ffffff; background: #374151; }
