@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
:root{
    --white:#fff;
    --gray-100:#f8f9fa;
    --gray-200:#e9ecef;
    --gray-300:#dee2e6;
    --gray-400:#ced4da;
    --gray-500:#adb5bd;
    --gray-600:#868e96;
    --gray-700:#495057;
    --gray-800:#343a40;
    --gray-900:#212529;
    --black:#000;
    --blue:#0073dd;
    --indigo:#6610f2;
    --purple:#6f42c1;
    --pink:#e83e8c;
    --red:#dc3545;
    --orange:#fd7e14;
    --yellow:#ffc107;
    --green:#28a745;
    --teal:#20c997;
    --cyan:#17a2b8;
    --active-tab:#ecf2fe;

}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
.outer-frame{
    display: flex;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-container{
    flex-basis: 70%;
}
.image-container img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.logo{
    width: 200px;
}
.login-container{
    flex-basis: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 2rem;
}

.form-group{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


/* HOME CSS */
.navbar{
    box-shadow: 0px 2px 5px var(--gray-300);
}

.navbar-brand{
    font-weight: bold;
}
.nav-item img{
    width: 22px;
}

.nav-link{
    display: flex !important;
    gap: 0.5rem !important;
    justify-content: center;
    align-items: center;
}
.active{
    background: var(--active-tab);
    border-radius: 5px;
    color: var(--blue) !important;

}
.navbar-nav{
    display: flex;
    gap: 1rem;
}
.navbar select{
    width: fit-content;
    border: none ;
    padding: 0.5rem;
}


.heading{
    font-weight: bold;
}
.dropdown-menu .link{
    text-decoration: none;

}

.main-container{
    padding: 3rem 9rem !important;
    background: var(--gray-100);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.division{
    border-bottom: 1px solid var(--gray-600);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.division h3{
    font-weight: 600;
    color: var(--gray-600);
    padding: 0 2rem;
    border-bottom: 2px solid var(--indigo);
    margin-bottom: 0;
    width: fit-content;
}
.division .link{
    color: var(--cyan);
    font-weight: 500;
    cursor: pointer;
}
.division-cards{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.card{
    width: fit-content;
    border-radius: 10px !important;
    text-align: center;
    min-width: 10rem !important;
    max-width: fit-content !important;
    color: var(--white);
}
.card .Number{
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 0;
}
.status .card .status span{
    font-size: 1.2rem;
    font-weight: 500;
}
.status .card:nth-child(1){
    background: var(--yellow);
}
.status .card:nth-child(2){
    background: var(--gray-700);
}
.status .card:nth-child(3){
    background: var(--cyan);
}
.status .card:nth-child(4){
    background: var(--green);
}
.status .card:nth-child(5){
    background: var(--red);
}
.project .card{
    background: var(--cyan);
    border-radius: 10px !important;
    min-width: 10rem !important;
    max-width: 10rem !important;
}
.project .card p{
    margin-bottom: 0;
}

.subheading{
    font-weight: 700;
}

.tickets .table td,.tickets .table th{
    text-align: center;
    padding: 1rem;
}
.project-name{
    color: var(--gray-600);
}

@media screen and (max-width:575px) {
    .navbar-collapse{
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
    }
    .dropdown-menu[data-bs-popper] {
    left: -50% !important;
    }
}
@media screen and (max-width:768px) {
    .main-container{
        padding: 3rem 5rem !important;
    }
}

@media screen and (max-width:600px) {
    .main-container{
        padding: 3rem 3rem !important;
    }
    
}