/* Prevent flash of unstyled content */
body.login {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

body.login.loaded {
    opacity: 1;
}