html, body {
    background-image: var(--Gaussian);
    background-blend-mode: overlay;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#Login {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: fit-content;
    height: fit-content;
    background-color: var(--Background);
    border-radius: 10px;
    box-shadow: 0px 0px 30px 5px #000000;
    padding: 10px 50px 60px 50px;
}

#LoginForm {
    display: flex;
    flex-direction: column;
    width: 20px;
    min-width: 100%;
}

#LoginError {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 90%;
    max-width: 400px;
    height: fit-content;
    background-color: var(--Background);
    border-radius: 10px;
    box-shadow: 0px 0px 5px 1px #00000090;
    border-left: 10px solid red;
    padding: 0px 20px;
}

#LoginImage {
    width: 300px;
    height: 300px;
}