/*
 * FOUC Guard — loaded via web_include_css (in <head>, render-blocking).
 * Hides ALL default Frappe login page content BEFORE the browser paints.
 * login_theme.js removes this once the custom theme wrapper is ready.
 *
 * Only targets login-related pages via body[data-path] selectors.
 */
body[data-path="login"],
body[data-path="forgot"],
body[data-path="signup"],
body[data-path="update-password"] {
    opacity: 0 !important;
}
