What you need to do is the following:
Find out the locators for both the "Effective Date" element and the input "MM/DD/YYYY" element using xpath, css or ID
Click on the "Effective Date" element
Use the DriverWait class to utilize the wait based on "ExpectedConditions.ElementIsVisible" and "ExpectedConditions.ElementToBeClickable" methods on the "MM/DD/YYYY" element.
Then SendKeys to "MM/DD/YYYY" element
You do not need any arbitrary pauses, delays or sleeps