#login-body {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    width: 100vw;
    height: 100vh;
    background: url(../../img/login-1920x1080-squares-f7f7fc.svg) no-repeat center center fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

#login-background .login-logo {
    position: absolute;
    left: 8vw;
    top: 5vh;
    height: 5vh;
}

#login-container {
    position: absolute;
    display: flex;
    flex-direction: column;

    transform: translate(0,-3vh);
    right: 20vw;
    box-sizing: border-box;
    padding: 3rem;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.18);
    border-radius: 0.75rem;

    background-color: #FFFFFF;
    width: 350px;
    min-height: 450px;
}

#login-component .title {
    margin-bottom: 1rem;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 0.15rem;
}

#login-component {
    display: flex;
    flex-direction: column;
    min-height: 300px;
    margin-top: 1rem;
}

#login-message .title {
    font-size: 48px;
    letter-spacing: 0.1rem;
    font-weight: bold;
}

#login-message .content {
    font-size: 1.25rem;
    padding-left: 4px;
    padding-top: 8px;
}

#login-button {
    border: none !important;
    border-radius: 0.5rem !important;
    background: var(--mid-shade) !important;
    color: var(--light-shade) !important;
}

@media screen and (min-width: 1099px) {
    #login-message {
        position: absolute;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;

        transform: translate(0, -3vh);
        box-sizing: border-box;
        left: 8vw;
        width: 400px;
        height: 450px;
    }
}

@media screen and (max-width: 1099px) {
    #login-message {
        display: none;
    }

    #login-container {
        right: calc(50vw - 175px);
    }
}

#login-component .help-text {
    color: var(--oslo-gray);
    font-size: 0.8rem;
    margin: 0 0 0.25rem 0;
}