﻿body.blank-page {
    background-color: var(--bs-body-bg);
}

/*The below form we have unset the margin block end as it was showing scrollbar*/
.content-body form {
    margin-block-end: unset;
}

.auth-wrapper {
    display: flex;
    flex-basis: 100%;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    width: 100%;
}

    .auth-wrapper .auth-inner {
        width: 100%;
        max-width: 400px;
    }

    .auth-wrapper.auth-basic {
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

        .auth-wrapper.auth-basic .auth-inner {
            position: relative;
        }

    .auth-wrapper .brand-logo {
        display: flex;
        justify-content: center;
        margin: 1rem 0 2rem 0;
    }

        .auth-wrapper .brand-logo img {
            max-width: 230px;
        }

/*Below css is to give hover effect on save user list */
.list-group .list-group-item:hover {
    cursor: pointer;
    background-color: #F584330D;
}
