/* login.css */
/* 
   Most styles have been migrated to Tailwind CSS in login.html.
   This file is kept for any specific overrides or custom scrollbar logic if needed.
*/

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #4a148c;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #7c43bd;
}

/* Ensure autocomplete background doesn't mess up transparency */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #2a2a2a inset !important;
  -webkit-text-fill-color: white !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* Ensure dropdown options are readable */
select option {
  background-color: #1f1f1f; /* Dark background for options */
  color: white;
}
