﻿.login-form-centering {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh;
    min-height: 30rem;
    font-size: var(--font-size-label-small);
}

.login-form {
    width: 50%;
    height: 100%;
    position: relative;
}

    .login-form .logo-group {
        text-align: center;
        margin-bottom: 6rem;
        position: sticky;
        top: 6rem;
    }

    .login-form .logo {
        width: 20rem;
        padding: 1rem;
    }

    .login-form .button-group {
        display: flex;
        justify-content: center;
        padding-top: 3rem;
        gap: 0 2rem;
    }

    .login-form .link-group {
        text-align: center;
        padding-top: 3rem;
    }

        .login-form .link-group a {
            color: #0085c7;
        }

    .login-form .annotation-group {
        text-align: center;
        margin-top: 2rem;
        color: var(--color-dark-gray)
    }
