/***
Login page
***/

/* logo page */
.login {
    background: #f8f8f8 !important;
    font-size: 14px;
    letter-spacing: 0.05em;
}


/*css added by subrat*/

.auth-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh)*100);
    width: 100%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
    .auth-wrapper .auth-inner {
        width: 100%;
    /*    position: relative;*/
        height: 100vh;
        overflow-y: auto;
        height: calc(var(--vh, 1vh)*100);
    }
    .auth-wrapper .brand-logo {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
       /* justify-content: center;*/
        position: absolute;
        top: 2rem;
        z-index: 1;
        margin: 0;
        left: 2rem;
    }
.brand-logo img {
    height: 55px;
}
.auth-wrapper .auth-bg {
    /*  background-color: #fff;*/
}
label {
    color: #5e5873;
    font-size: .857rem;
}
.form-control {
    padding: 0.438rem 1rem;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #d8d6de;
    border-radius: 0.357rem !important;
}

.divider {
    height: 1px;
    background-color: #e7e7e7;
}
.login .copyright {
    text-align: center;
    color: #a1a1a1;
    font-size: 12px;
}


/*css added by subrat end*/