/* Stopping Chrome's autofill from changing the colour of our input fields (username/passwords) */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffff;
    transition: background-color 5000s ease-in-out 0s; /* fallback solution for older versions of Chrome */
    box-shadow: inset 0 0 20px 20px #23232329;
}