/* These are styles used in the login pages, like moving the main screen over when the
   left pane does not need to be rendered. */

/* Ambient Background Effect */
body { background-color: #f5f5f7 !important; }

/* Force the viewport to consume the entire screen by overriding the sidebar margins */
#mainViewport {
    margin-left: 0 !important;
    padding-top: 0 !important;
}
#sidebar, #topBanner {
    display: none !important;
}

.auth-ambient-bg {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 0; overflow: hidden;
    background:
            radial-gradient(circle at 15% 50%, rgba(0, 113, 227, 0.06), transparent 35%),
            radial-gradient(circle at 85% 30%, rgba(88, 86, 214, 0.06), transparent 35%);
    animation: breathe 15s ease-in-out infinite alternate;
}