
@tailwind base;
@tailwind components;
@tailwind utilities;


body{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
}


#login-body{
    background: linear-gradient(49deg, #FEAF00 0%, #F8D442 100%);
}

.title-login::before{
    content: "";
    width: 4px;
    height: 39px;
    background-color: #F8D442;
    position: absolute;
    top: 5px;
    left: 26px;
}

.student-title::before{
    content: "";
    width: 4px;
    height: 20px;
    background-color: #F8D442;
    position: absolute;
    top: 5px;
    left: -10px;
}

.nav__list li:hover{
    background-color: #FEAF00;
    transition: all 0.3s ease;
}

/* .nav__list a:focus{
    background-color: #FEAF00;
} */


.bg_card{
    background: linear-gradient(134deg, #FEAF00 0%, #F8D442 100%);
}

.students_header{
    position: relative;
   
}
.students_header:after{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #E5E5E5;
    position: absolute;
    top: 112%;
    left: 0;
}

.active_nav{
    background-color: #FEAF00 !important;
}



