main {
    margin: 0;
    height: 100%;
    background-color: var(--bg-color);
}

.login-page {
    width: 100%;
    height: 100%;
}


.login-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}



.login-info {
    flex: 0;
    height: 0;
    display: none;
}

.login-form-wrapper {
    flex: 1 1 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.login-info-title {
    font-size: 2rem;
    line-height: 1;
    margin: 20px 0;
    align-content: unset;
    text-align: center;
}

.login-info-description {
    font-size: 1.3rem;
    line-height: 1;
    margin: 20px 0;
    align-content: unset;
    text-align: center;
}

.login-ribbon-actions {
    display: flex;
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
}

.login-ribbon-actions a {
    display: flex;
    align-items: center;
    gap: 3px;
}

.login-ribbon-actions button {
    width: auto;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background-color: var(--bg-color);
}

.login-header {
    position: absolute;
    display: flex;
    width: 100%;
    top: 0;
    left: 0;
    gap: 22px;
    padding: .5rem 1rem;
    justify-content: space-around;
}

.login-header .login-header-logo {}

.login-header .login-header-actions {
    display: flex;
    gap: 12px;
}




.login-footer-signature {
    position: absolute;
    display: flex;
    width: 100%;
    bottom: 0;
    left: 0;
    gap: 22px;
    padding: .5rem 1rem;
    justify-content: space-around;
}



@media (min-width: 960px) {

    .login-wrapper {
        flex-direction: row;
    }

    .login-form-wrapper {
        flex: 1 1 50%;
    }

    .login-info {
        flex: 1 1 50%;
        height: 100%;
        background-color: var(--login-bg-color);
        background-image: url(/Public/Assets/Images/Texture/corp.png);
        color: var(--brand-text-color);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .login-header {
        flex-direction: row-reverse;
        padding: .5rem 12rem;
        justify-content: end;
    }

    .login-footer-signature {
        width: 50%;
        flex-direction: row-reverse;
        padding: 15px 0;
    }

    .login-header .login-header-actions i,
    .login-footer-signature {
        color: var(--brand-text-color);
    }
}