﻿#backstopLogo {
    height: 20vh;
    width: auto;
    display: inline-block;
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

#loginForm .form-group {
    width: 100%;
    padding: 20px 0;
}

body {
    overflow: hidden;
}

#global-bg {
    background-image: url("/img/dark_bubbles_background.svg");
}

#global-bg-dampen {
    background-color: rgb(0 0 0 / 15%);
}

#backgroundBlackout {
    display: none;
    top: 0;
    height: 100vh;
    width: 100vw;
}

#loginFormContainer {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

#loginForm {
    position: fixed;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    background-color: rgb(0 0 0 / 60%);
    color: white;
    width: 30%;
    z-index: 3;
    backdrop-filter: blur(10px);
    box-shadow: 1px 1px 5px rgb(0 0 0 / 60%);
}

#Email, #Password {
    font-size: 1em;
}

#loginHeader {
    position: fixed;
    top: 37%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2em;
    font-weight: bold;
    text-shadow: 1px 1px 1px #0000000f;
}