.container-fluid{
    margin:auto;
}

a{
    color:#212f45;
}
a:hover{
    opacity: .5;
}



.student-profile{
    margin-right: 60px;
    margin-left:15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1), 0 8px 16px rgba(0, 0, 0, .1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #F7F6FB;
    padding:30px;
}
.active-bs{
    color:#212f45;
    border-bottom: 1px solid #212f45 !important;
}
.active-bs:hover{
    color:#212f45;
    border-bottom: 1px solid #212f45 !important;
}
.nav-bs-inactive{
    color:#212f45;
}
.nav-bs-inactive:hover{
    border-bottom: 1px solid #212f45 !important;
    color:#212f45;
}

.student-inactive-info
{
    font-weight: bold;
    font-size:14px;
}
.student-profile-info-2
{
    font-weight: bold;
    font-size: 14px;
    color: #212f45;
}

.student-info{
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1), 0 8px 16px rgba(0, 0, 0, .1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #F7F6FB;
}

.login .form-control, .forgot-password .form-control{
    border-top: 0;
    border-left:0;
    border-right: 0;
    background-color: transparent;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    border-radius: 0;
}
.sign-up .form-control{
    border-radius: 0;
    background-color: transparent;
}


.form-control:focus{
    border: 0;
}
.btn
{
    border-radius: 0;
    width: 100%;
}
#student-login, #admin-login{
    animation: .7s fade-in;
    
}
@keyframes fade-in {
    from {
        transform: rotateY(-90deg);
    }
    to {
        transform: rotateY(0deg);
    }
  }