/* --- Start Page Layout --- */
body {
    background:
        linear-gradient(
            to bottom,
            rgb(35 31 32 / 80%) 0%,
            rgb(35 31 32 / 80%) 100%
        ),
        center / cover no-repeat
            url("/public/images/backgrounds/login_background.jpg");
}

#page-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: var(--spacing-xl);
    min-height: calc(100vh - 15rem);
}

#hero h1 {
    color: var(--color-warn);
    font-size: 3rem;
}

#hero p {
    color: white;
}

/* here is the content - login form/cookies/privacy policy */
.login-form,
.forgot-password-form {
    min-width: 35vw;
}

.oidc_login {
    display: block;
    text-align: center;
}

.text {
    flex-direction: column;
    color: white;
}

/* make it mobile friendly */
@media only screen and (width <=900px) {
    body {
        padding: 1rem;
    }

    #page-content {
        flex-direction: column;
    }
}

/* --- End Page Layout --- */

/* --- Start Login Form Style --- */
.login-form h3 {
    font-size: 2.4rem;
}

.input-container {
    width: 100% !important;
}

/* --- End Login Form Style --- */
