:root{
    --primary: rgb(117, 163, 56);
    --txt-color: rgb(36, 36, 36);
}


body{
    background-color: rgb(238, 238, 238);
    color: var(--txt-color);
}

.login-container{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card{
    width: 400px;
    padding: 2rem;
    border: none;
    background-color: rgb(229, 229, 229);
    border-radius: 20px;
    color: rgb(63, 63, 63);
}

.form-control,
.form-check-input{
    background-color: transparent;
    border: 1px solid rgb(202, 202, 202);
    transition: all 300ms ease-in-out;
}

.form-control:focus,
.form-check-input:focus{
    box-shadow: none;
    background-color: transparent;
    border: 1px solid rgb(202, 202, 202);
}

.form-control::placeholder{
    color: rgb(188, 188, 188);
}

.forget-password{
    color: rgb(134, 187, 0);
}
.btn-primary{
    background-color: var(--primary);
    border: 0;
    transition: all 300ms ease-in-out;
    font-weight: bold;
}
.btn-primary:hover{
    background-color: rgb(78, 112, 33);;
    transform: translateY(-2px);
    box-shadow: 0px 2px 20px rgba(166, 255, 0, 0.33);
}





/* sidebar design  */

.sidebar{
    background-color: rgb(228, 228, 228);
    width: 180px;
    padding: 10px 20px;
    height: 400px;
    border-radius: 20px;
}

.sidebar a{
    border-bottom: 1px solid rgb(205, 205, 205);
    margin-bottom: 10px;
    transition: all 300ms ease-in-out;
}

.sidebar a:hover{
    color: var(--primary);
    letter-spacing: 1px;
}

.dashboard-card{
    background-color: rgb(226, 226, 226);
}

/* detail-card */
.detail-card{
    padding: 20px;
    background-color: rgb(228, 228, 228);
    border-radius: 20px;
}
.card-title{
    border-bottom: 1px solid rgb(196, 196, 196);
}

.custom-table {
    --bs-table-bg: #eaeaea;
    --bs-table-color: #212529;
    border: 1px solid rrgb(165, 165, 165)
}