/**
Custom CSS
*/

.nav-border {
    border-bottom: 3px solid #111827;
    /* top: 0;
    position: -webkit-sticky;
    position: sticky; */
}

.nav-fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 14rem;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .nav-fixed {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1;
    }
}

.sidebar {
    /*This line code can be uncommented if you want to have fixed*/
    /* max-height: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: -webkit-sticky;
    position: sticky;
    z-index: 1;
    top: 0; */
}

/*
custom color
*/

.bg-gray-dark {
    background-color: #dbecff;
}

/* .sidebar .nav-item .nav-link {
    font-size: 2rem;
} */

.sidebar .nav-item .nav-link span {
    font-size: 1rem;
}

.select2-selection__choice {
    background-color: #0f1930 !important;
    color: white !important;
}

.row-container{
    min-height: 100vh;
    align-items: center;
    margin: 0 -1.5rem;
}
.form-container{
    background:white;
    padding: 5rem 4rem;
    color:  #0f1930;
    border-radius: 2rem;
    border-style: solid;
    border-width: 1px;
    border-color: #eff0f6;
    box-shadow: 0 6px 12px 0 rgba(20, 20, 43, 0.05);
}
.form-container input,
.form-container select{
    border-radius: 25rem;
    padding: 15px 25px !important;
    height: auto;
}
.right-bg-box{
    /*background: #0f1930;*/
    /*padding: 5rem 4rem;*/
    /*color: white;*/
    /*border-radius: 2rem;*/
    /*box-shadow: 0 1rem 3rem rgba(0,0,0,.5);*/
    /*width: max-content;*/
    margin: auto;
    max-width: 100%;
}
.right-bg-box img{
    /*filter: brightness(0) invert(1);*/
}
.right-bg-box h1{
    color: black;
    font-weight: 700;
    font-size: 3.5rem;
}
.signup-btns{
    display: flex;
    column-gap: 1rem;
}
.auth-btns{
    background: #0f1930;
    padding: 5px 15px;
    border-radius: 5px;
    color: white ;
    text-decoration: none !important;
    transition: all .5s;
}
.auth-btns:hover{
    background-color: White;
    color: #0f1930;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.25);
}
.login-btn{
    background: #0f1930;
    padding: 10px 15px;
    border-radius: 5px;
    color: #fff ;
    text-decoration: none !important;
    transition: all .5s;
    border: none;
    width: 100%;
    border-radius: 25rem;
    font-size: 20px;
    font-weight: 600;
}

.forget{
    color: #0f1930 !important;
}

.card-small-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.card-small-header img{
    width: 35px
}

.sidebar-dark .nav-item .nav-link{
    transition: all .3s;
}
.sidebar-dark .nav-item .nav-link:hover{
    background: #0f1930;
    color: #fff;
}
.sidebar-dark .nav-item .nav-link:hover i{
    color: #fff;
}
.sidebar-dark .nav-item .nav-link:hover[data-toggle=collapse]::after{
    color: #fff;
}
.text-primary{
    color: #0f1930 !important;
}
a{
    color: #0f1930;
}
.btn-primary{
    background-color: #0f1930;
    border-color: #0f1930;
}
.sidebar-dark .nav-item.active .nav-link{
    background: #0f1930;
    color: #fff;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
}
.sidebar-dark .nav-item:hover .nav-link{
    background: #0f1930;
    color: #fff;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
}
.sidebar-dark .nav-item .nav-link{
    margin: 0 15px;
    width: calc(100% - 30px);
    border-radius: 5px;
    margin-bottom: 0.5rem;
    padding: 0.5rem 1rem;
}
.sidebar-dark .nav-item .nav-link[data-toggle=collapse]::after{
    color:  #0f1930;
}
@media (max-width:991px) {
    .right-bg-box{
        border-radius: 0;
        padding: 1rem;
        box-shadow: none;
        margin-bottom: 1rem;
    }
}
@media (min-width: 768px) {
    .sidebar.toggled .nav-item .nav-link {
        width: calc(6.5rem - 30px);
    }
}