@import url("https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400..800&family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Mtn";
}

body {
  font-family: "Mtn";
  background-color: #f2f4f6;
}

@font-face {
  font-family: "Mtn";
  src: url("./mtn.ttf") format("truetype");
  font-weight: 400;
}

.logo{
    height: 150px;
    width: 150px;
    background-image: url(../images/logo.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.sidebar_all {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding-block: 25px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: none;
    z-index: 68;
    overflow-y: scroll;
}



.links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.ll {
    border-top: 2px solid #534f4f2a;
}

.links a {
    border-bottom: 2px solid #534f4f2a;
    width: 100%;
    padding: 0 10%;
    text-decoration: none;
    padding-block: 10px;
    color: #000;
    background-color: #f2f2f2;
}

.links h3 {
    padding: 0 10%;
    padding-block: 10px;
    background-color: #E61D31;
    /* background-color: #5daa80; */
    text-transform: uppercase;
    color: #fff;
    /* color: #000; */
    font-size: 18px !important;
    font-weight: 500;
    margin: 0;
}

.links a:hover {
    background-color: #E61D31;
    background-color: #fff;
    color: #000;
}



#toggleButton {
    padding: 10px;
    border: none;
    background-color: transparent;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    position: absolute;
    z-index: 332;
    position: fixed;
    background-color: #E61D31;
    top: 0;
}

.log {
    background-color: #E61D31;
    color: #fff !important;
}

.log:hover {
    background-color: #f2f2f2 !important;
}

#toggleButton i {
    font-size: 20px;
    color: #fff !important;
}

.forms{
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.forms input{
    height: 45px;
    padding-left: 3%;
    border: 2px solid #423f3f;
}
.forms input:focus{
    outline: none;
}

.forms select{
    height: 45px;
    padding-left: 3%;
    border: 2px solid #423f3f;
}
.forms select:focus{
    outline: none;
}
.forms button{
    height: 45px;
    width: 100%;
    background-color: #E61D31;
    border: none;
    color: #fff;

}

table {
    width: 100%;
    border-collapse: collapse;
}
table, th, td {
    border: 1px solid #2c1919;
}
th, td {
    padding: 10px;
    text-align: left;
}
th {
    background-color: #E61D31;
    color: #fff;
}
table  img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.forgot_password{
    text-align: center;
}
.forgot_password a{
    color: #000;
    text-decoration: underline;
}
@media only screen and (max-width: 1110px) { 
    .sidebar_all{
        width: 250px;
    }
}