#loginLayout {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;

    .footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem;

        span {
            color: #737373;
            font-size: 0.8rem;

            a {
                color: #d600e6;
                text-decoration: none;
                font-family: IBM Plex Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
            }
        }
    }
}

#logo:hover {
    cursor: pointer;
}

#signInContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-grow: 1;
    width: 500px;

    .logo {
        width: 400px;
        height: 56px;
        margin-bottom: 1rem;
    }
}

#signInForm {
    form {
        display: flex;
        flex-direction: column;
        align-items: center;

        .form-group {
            label {
                font-weight: 600;
                color: var(--primary);
            }
        }

        input {
            background-clip: padding-box;
            background-color: #fff;
            border: 1px solid rgba(0, 40, 100, .12);
            border-radius: 3px;
            color: #506690;
            display: block;
            font-size: .9375rem;
            font-weight: 400;
            height: 2.375rem;
            line-height: 1rem;
            padding: 0.375rem 0.75rem;
            transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
            width: 100%;

            &:focus {
                background-color: #fff;
                border-color: #9080f1;
                box-shadow: 0 0 0 2px #e1dcfb;
                color: #495057;
                outline: 0;
            }
        }
    }
}

#signInForm button {
    height: 38px;
    font-size: 1rem;
    line-height: 38px;
    border-radius: 0.25rem;
    padding: 0 12px;
    background: #7c69ef;
    border: 0;
    width: 100%;
    font-weight: 600;

    &:hover {
        background: #6852ed;
        color: #ffffff;
    }
}

#signInForm, #sso {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    background: #fffffd;
    box-shadow: #11111a0d 0 1px, #11111a1a 0 0 8px;
    border-radius: 0.25rem;
    padding: 2rem;
}

#ssoButtonContainer {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

#sso {
    display: none;
    width: 100%;

    .title {
        font-size: 1.5rem;
        font-weight: 600;
        text-align: center;
        margin-bottom: 1rem;
    }
}

#ssoErrors {
    color: red;
    text-align: center;
    font-weight: 600;
    font-size: 1.25rem;
}

#ssoLoaded {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background: #f1f4f8;
}

.sso-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.microsoft-sso-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: 1px solid #8c8c8c;
    border-radius: 0.25rem;
    background: #2f2f2f;
    color: #ffffff;
    font-weight: 600;
    font-family: Segoe UI Light, Segoe UI, Tahoma, Arial, sans-serif;
    padding: 0 12px;
    gap: 12px;
    height: 45px;
    text-decoration: none;
    font-size: 1rem;
    line-height: 55px;

    .microsoft-sso-icon {
        width: 2rem;
        height: 2rem;
    }

    &:hover {
        background: #ffffff;
        color: #2f2f2f;
        border: 1px solid #8c8c8c;
    }
}
