/*Login Pgae*/
.Login-page {
    background-color: #f0f2f5;
    background-image: url('../../images/Login-bg2.jpg');
    background-repeat: no-repeat;
    background-position: 100%;
    background-size: cover;
    height: 100vh;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

.login-page-box {
    width: 55%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.left-box {
    background-color: rgba(38, 43, 72, 0.92);
    color: #ffffff;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    -webkit-box-shadow: 0px 3px 6px #1d2030;
    box-shadow: 0px 3px 6px #1d2030;
    padding: 0 30px;
    min-height: 400px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.right-box {
    background-color: #ffffff;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    -webkit-box-shadow: 0px 2px 6px 0px #1d2030;
    box-shadow: 0px 2px 6px 0px #1d2030;
    padding: 0 30px;
    min-height: 400px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.right-box h2,
.right-box p,
.right-box form,
.left-box img,
.left-box p {
    flex: 0 0 100%;
    min-width: 100%;
}

.left-box img {
    min-width: 90px;
    width: 90px;
    margin-bottom: 20px;
}

.left-box p {
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
}

.right-box h2 {
    font-size: 25px;
    text-align: center;
    color: #091f52;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 5px;
}

.right-box p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
}

.right-box form label {
    font-weight: 400;
    color: #121212;
}

.right-box form .mb-3 {
    margin-bottom: 10px;
}

.right-box form input {
    border-radius: 5px;
}

.right-box form button.btn {
    color: #091f52;
    border: 1px solid #091f52;
    background: #fff;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    padding: 10px;
    line-height: 1;
    transition: background 0.3s ease, color 0.3s ease;
}

.right-box form button.btn:hover {
    background: #091f52;
    color: #fff;
}

.main-btn {
    color: #091f52;
    border: 1px solid #091f52;
    background: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 3px;
    padding: 10px;
    line-height: 1;
    transition: background 0.3s ease, color 0.3s ease;
    margin-right: 10px;
}

.main-btn:hover {
    background: #091f52;
    color: #fff;
}

.login-page-box .cus-padding {
    padding-left: 0;
    padding-right: 0;
}

/*Login Pgae End*/
/*Header & Sidebar*/
.skin-blue .main-header .logo,
.skin-blue .main-header .logo:hover {
    background-color: #371e66;
}

.skin-blue .main-header .navbar {
    background-color: #171e2e;
}

.skin-blue .main-sidebar.sidebar-cus {
    background-color: #171e2e;
}

.text-aqua {
    color: #ffffff !important;
}

.navbar-nav>.user-menu .user-image {
    padding: 3px;
    background-color: #ffffff;
}

/* .sidebar-menu {
    margin-top: 30px;
} */
li.dropdown.user.user-menu.open ul.dropdown-menu {
    width: 150px;
    border: 1px solid #ddd;
}

li.dropdown.user.user-menu.open ul.dropdown-menu:before {
    content: '';
    width: 13px;
    height: 13px;
    background: #ffffff;
    position: absolute;
    top: -5px;
    left: 27px;
    transform: rotate(45deg);
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
}

li.dropdown.user.user-menu.open ul.dropdown-menu li a {
    border: 0;
    background-color: #fff;
    padding: 8px;
    font-size: 16px;
    border-bottom: 1px dashed #cccccc;
}

li.dropdown.user.user-menu.open ul.dropdown-menu li a:hover {
    color: #091f52;
}

li.dropdown.user.user-menu.open ul.dropdown-menu li:last-child a {
    border-bottom: 0;
}

.skin-blue .sidebar-menu>li:hover>a {
    background: #ecf0f5;
    color: #121212;
}

.skin-blue .sidebar-menu>li:hover>a .text-aqua {
    color: #121212 !important;
}

/*Header & Sidebar End*/
.frm-box,
.frm-table {
    background: #fff;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.collapse-box {
    margin-bottom: 0;
    padding-bottom: 0;
}

.frm-box label {
    display: block;
    font-weight: 500;
    text-align: left;
}

.frm-box .col-lg-4.col-md-4.col-sm-12.col-12,
.frm-box .col-lg-12.col-md-12.col-sm-12.col-12,
.frm-box .col-lg-6.col-md-6.col-sm-12.col-12 {
    margin-bottom: 10px;
}

.frm-btn {
    text-align: left;
    display: block;
    background: #171e2e;
    color: #fff;
    border: 1px solid #171e2e;
    padding: 10px 20px;
    border-radius: 3px;
    font-size: 16px;
    line-height: 1;
    transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.frm-btn:hover {
    background: #ffffff;
    color: #171e2e;
    border: 1px solid #171e2e;
}

.frm-box .select2-container--default .select2-selection--multiple,
.frm-box .select2-container--default .select2-selection--single {
    border: 1px solid #d2d6de;
    border-radius: 0;
    height: 34px;
}

img#output {
    width: 50px;
}

.upload-img label {
    border: 1px solid #ddd;
    height: 32px;
    display: flex;
    align-items: center;
    padding: 10px;
    color: #999999;
    cursor: pointer;
}

.frm-table .table-heading,
.frm-box .frm-heading {
    text-align: left;
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 600;
    margin-top: 0;
}

.collapse-btn {
    text-align: left;
    display: block;
    margin: 5px 0 15px;
    border: 0;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    color: #371e66;
    padding-left: 0;
}

.collapse-btn:hover {
    text-decoration: underline;
    color: #171e2e;
}

.frm-table button.button {
    border: 0;
    background-color: transparent;
    color: #171e2e;
}

.frm-table button.button:hover {
    color: #371e66;
}

.dashboard-row .row .col-lg-3.col-xs-6 {
    padding-right: 10px;
    padding-left: 10px;
}

.audit-data {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.audit-data p {
    margin-bottom: 0;
}

.book-box img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.25);
}

.book-txt-box {
    display: flex;
    flex-wrap: wrap;
}

.book-txt-box h2 {
    color: #371e66;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 25px;
    font-weight: 600;
    flex: 0 0 100%;
}

.book-txt-box p {
    flex: 0 0 50%;
}

.upload-img-box label {
    border: 1px solid #d2d6de;
    height: 34px;
    padding: 6px 12px;
    cursor: pointer;
    color: #777;
}

.upload-img-show img#output {
    width: auto;
}

.frm-sel-data .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #371e66;
    border: 1px solid #371e66;
    margin-top: 3px;
    padding: 5px 5px;
    line-height: 1;
    font-size: 12px;
}

.frm-box.collapse-box .row {
    margin-left: -20px;
}

.lms-tabs ul.nav.nav-tabs li a
{
    color: #121212;
}
.lms-tabs ul.nav.nav-tabs li.active a
{
     background-color: #371e66;
    color: #fff;   
}
@media (max-width: 767px) {
    .skin-blue .main-header .navbar .dropdown-menu li a {
        color: #171e2e;
    }

    .navbar-custom-menu>.navbar-nav>li>.dropdown-menu {
        right: 3%;
    }

    li.dropdown.user.user-menu.open ul.dropdown-menu:before {
        left: unset;
        right: 10px;
    }
}

@media (max-width: 540px) {
    .login-page-box {
        width: 90%;
    }

    .left-box,
    .right-box {
        padding: 20px 30px;
        min-height: auto;
    }

    .left-box {
        border-radius: 4px 4px 0 0;
    }

    .right-box {
        border-radius: 0 0 4px 4px;
    }

    .left-box p {
        margin-bottom: 0;
    }

    .right-box p,
    .left-box img {
        margin-bottom: 10px;
    }

    .right-box h2,
    .right-box form .mb-3 {
        margin-bottom: 5px;
    }

    .frm-btn {
        float: left;
        margin-top: 15px;
    }

    .main-btn {
        font-size: 14px;
        margin-right: 5px;
        margin-bottom: 10px;
    }

    .audit-data {
        flex-wrap: wrap;
    }

    .audit-data p {
        margin-bottom: 10px;
        flex: 0 0 100%;
    }

    .audit-data p:last-child {
        margin-bottom: 0;
    }
}


/* code by niraj  */

.profile-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.profile-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.info-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.info-card h5 {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    font-weight: 600;
    color: #2d3748;
}

.info-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.info-col {
    flex: 0 0 33.333%;
    margin-bottom: 12px;
}

.info-label {
    font-weight: 500;
    color: #4a5568;
    font-size: 14px;
}

.info-value {
    font-size: 15px;
    color: #2d3748;
}