
*{
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
}



/*---------------------------------login Page start ----------------------------*/

.login-outer {

    background: url(../images/background.png);
    height: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.login-hed {
    margin: 0rem 0rem;
    box-shadow: 0 2px 7px 0 rgb(0 0 0 / 25%);
    
}
.form-section-outer{
    background-color: #fff;
    width: 650px;
    height: 100%;
    padding: 25px;
    box-shadow: 0 2px 7px 0 rgb(0 0 0 / 25%);
    border-radius: 10px;
}
.login-logo{
    display: flex;
    justify-content: center;
    margin-top: -72px;
}
.login-logo img{
     width: 140px;
     height: 100%;
}
.form-section-outer h2{
    font-weight: 700;
}
.form-section-inner{
    margin-top: 20px;
}
.form-section-inner label{
    display: block;
    font-size: 16px;
    font-weight: 500;
}
.form-section-inner input{
    width: 100%;
    padding: 10px;
    border: 1px solid #D3D3D3;
    border-radius: 5px;
    margin-top: 5px;
}
.form-section-inner input:focus{
    outline: none;
    
}
.form-section-inner select {
    width: 100%;
    padding: 10px;
    border: 1px solid #D3D3D3;
    border-radius: 5px;
    margin-top: 5px;
}
.button-section{
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.button-section button{
    padding: 8px 25px;
    border: none;
    color: #fff;
    background-color:  #7d1818;;
    font-weight: 600;
    border-radius: 5px;
}
.button-section button:hover{
    background-color: #8b1313;
}
/* .button-section button:first-child{
    background-color: #7d1818;
}
.button-section button:first-child:hover{
    background-color: #8b1313;
} */
.signin-outer{
    width: 400px;
}
.register-now h6{
    font-size: 16px;
    margin-top: 10px;
}
.register-now h6 span:hover{
    color: #1aa379;
    cursor: pointer;
} 
.register-now h6 span{
    margin-left: 5px;
    text-decoration: underline;
}
.signin-outer h6{
    line-height: 20px;
}
/*--------------------------- ligin Page End -------------------------*/



/*----------------------------- Dashboard page start ----------------*/
.main {
    background-color: #ebebeb;
    height: 100%;
    min-height: 100vh;
}
.left-sidebar {
    width: 266px;
    height: 100vh;
    background-color: #fff;
    box-shadow: 0px 0px 15px #b5b5b5;
    transition: all 0.5s;
    position: fixed;
    /* z-index: 99; */
}
.left-sidebar ul li a{
    text-decoration: none;
    color: #121212;
    font-weight: 500;
    font-size: 18px;
    display: flex;
    align-items: center;
    margin-left: 12px;
}
.left-sidebar ul li a span{
    margin-left: 10px;
}
.left-sidebar ul{
    padding-left: 0px;
}
.left-sidebar ul li{
    padding: 13px;
    margin: 10px 15px 0px 15px;
    border-radius: 10px;
}
.header {
    background-color: #fff;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
.content-section{
    width: calc(100% - 266px);
    margin-left: 266px;
    transition: all 0.5s;
   position: relative;
}
.dropdown {
    display: flex;
    align-items: center;
    justify-content: center;
}
.dropdown-toggle::after{

    position: absolute;
    right: 8px;
    top: 18px;
    font-size: 26px;
}
.dropdown-toggle:focus{
    border: none;
}
.active{
    background-color: #7F1819;
}
.active a span{
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    display: flex;
    align-items: center;
}
.card-outer{
    margin: 45px;
}
.admin-toggle{
    width: 200px;
}
.search-box i{
    position: absolute;
    right: 10px;
    top: 10px;
}
.card-section {
    margin-top: 25px;
}
.main-card{
    position: relative;
}
.main-card img{
    width: 100%;
    
}
.card-content{
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 12px;
    bottom: 70px;
    margin: 0px 10px;
}
.card-content button{
    background-color: #466443;
    border: none;
    border-radius: 5px;
    padding: 10px;
    color: #fff;
}
.intro{
    width: 0%;
}
.sidebar-logo a img{
    width: 180px;
}

.cstm-btn {
    border: none;
    background: transparent;
    padding: 5px 10px;
}
.list-unstyle li a svg path{
    fill: #7F1819;
}
.list-unstyle .active a svg path{
    fill: #fff;
}
.left-width{
    width: 100px;
    transition: all 0.5s;
    
}

.main-outer .content-section{
    width: calc(100% - 95px);
    margin-left: 95px;
    transition: all 0.5s;
}
.left-width .sidebar-logo a img{
    width: 80px;
}
.left-width .list-unstyle li a span{
    display: none;
}
.outer-table{
background-color: #fff;
margin: 20px;
border-radius: 8px;
padding: 15px;
border: 1px solid #d9d9d9;
}
.outer-table h3{
    margin-bottom: 15px;
}
.outer-table table {
    width: 100%;
}
.outer-table table thead{
    background-color: #7d1818;
    color: #fff;
}
.outer-table table thead tr td{
    font-weight: 600;
}
.edit-icon i{
    font-size: 20px;
    color: #0081bb;
}
.outer-table table tbody tr td{
    font-size: 16px;
    color: #0c0c0c;
}
.gates-check {
    display: flex;
    gap: 40px;
}
.gates-outer label  {
    font-size: 18px;
    color: #0c0c0c;
    font-weight: 600;
    position: relative;
}
.gates-outer label span{
    margin-left: 20px;
}
.gates-outer label::before{
    content: '';
    position: absolute;
    background-color: #7f1819;
    width: 10px;
    height: 10px;
    border-radius: 20px;
    top: 8px;
    padding-right: 10px;
}
.gates-check{
    margin: 15px 0px 0px 20px;
}
.gatescheck-inner {
    display: flex;
    align-items: center;
}
.gatescheck-inner input{
    margin-right: 10px;
}
.Duration-check span{
    font-size: 16px;
    font-weight: 600;
    color: #0c0c0c;
}
.Duration-check input{
    border: 1px solid #c5c5c5;
    padding: 5px;
    border-radius: 6px;
}
.gate-button{
    text-align: end;
}
.gate-button button{
    text-align: end;
    padding: 10px 20px;
    border-radius: 8px;
    background-color: #7d1818;
    color: #fff;
    border: none;
}
.gate-button button:hover{
    background-color: #8b1313;
}