Currently revamping the appearance of the Wordpress login page and most aspects are coming together smoothly. I opted to utilize a separate css file for this project, which has been effective overall. However, one issue persists. I've encountered difficulty in removing the border and box shadow from the form on the page. My attempted solution was:
#login form {
background: #7554a5;
border: 0px !important;
-moz-box-shadow: 0px !important;
-webkit-box-shadow: 0px !important;
box-shadow: 0px !important;
}
Regrettably, this approach hasn't produced the desired result. I also delved into Wordpress's wp-admin.css file to locate the application of box shadow, but my search has been inconclusive. Any assistance would be greatly appreciated.