/* Target the focused input field */
input:focus {
    border-color: #002984 !important; /* Your theme color */
    box-shadow: 0 0 0 0.25rem rgba(7, 40, 185, 0.25) !important; /* Optional: Add a light shadow effect to match the focus style */
}

/* Optional: Target invalid input fields */
input.is-invalid:focus {
    border-color: #dc3545 !important; /* Red color for invalid inputs */
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25) !important; /* Optional: Add red shadow for invalid input */
}
