:root{
    --bs-primary: #E0953A;
    --bs-body-color: black;
    --bs-body-icons:var(--bs-primary);
    --bs-btn-color: #fff;
}

.input-group-text i{
    color:var(--bs-body-icons);
}


body,html{
    margin: 0;
    padding: 0;

}

a{
    text-decoration: unset;
    color: var(--bs-body-color);
    cursor: pointer;
    font-size: 20px;

}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 !important;
}

.btn-primary{
    --bs-btn-color:#000;
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-body-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--bs-body-color);
    --bs-btn-hover-border-color: var(--bs-body-color);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--bs-body-color);
    --bs-btn-active-border-color: var(--bs-body-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--bs-primary);
    --bs-btn-disabled-border-color: var(--bs-primary);
}



/*home*/




.logo img{
    width: 100%;
}




.login-container {
    background-color: rgba(255, 255, 255, 0.534);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: auto;
    backdrop-filter: blur(5px);
}





.login-container .btn-group .btn {
    width: 50%;
    cursor: pointer;
}

.login-container #resetPassword{
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    color: var(--bs-body-color);
}

.login-container #resetPassword:hover{
    text-decoration: underline;
}




/*Dashboard*/


.navbar-brand img {
    height: auto;
    width: 100%;
}
.navbar-nav .nav-link {
    color: #EAE5B8 !important; /* Custom color similar to the one in the image */
}
.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' linecap='round' linejoin='round' d='M4 7h22M4 15h22M4 23h22'/></svg>");
}
.notification-icon {
    position: relative;
}
.notification-icon .badge {
    position: absolute;
    top: 0;
    right:-10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    font-size: 12px;
}
.nav-item{
    width: 100%;
    display: flex;
    justify-content: center;
    font-weight: 700;
}

.nav-link.active{
    color: white !important;
}
/* .nav-item:hover{
    background-color: #EAE5B8;
} */
.nav-item:hover a{
    color: white !important;
}




.control{
    border-radius: 10px;
    border: 2px solid #000;
    margin: 10px 0;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.bg-image{
    background-image: url('../images/bg-image.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.control img{
    padding-bottom: 20px;
}


.heading , .heading2{
    background-image: url('../images/heading-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 90px;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.heading2{
    background-image: unset;
    height: 50px;
    width: max-content;
    margin: 0 auto;
    margin-bottom: 30px;
    display: block;
    border-bottom: 2px solid black;
}

.heading h2, .heading2 h2{
    font-weight: 800
}




