
/*CSS FOR COUNTER*/
.timer, .timer-done, .timer-loop {
    font-size: 30px;
    color: black;
    font-weight: bold;
    padding: 10px;
    float: right;
  }
  .jst-hours {
    float: left;
  }
  .jst-minutes {
    float: left;
  }
  .jst-seconds {
    float: left;
  }
  .jst-clearDiv {
    clear: both;
  }
  .jst-timeout {
    color: red;
  }
  
  /* Navbar starts here*/
  .sidebar {
    margin: 0;
    padding: 0;
    width: 200px;
    background-color: #cbeffff5;
    box-shadow: #555;
    position: fixed;
    height: 100%;
    overflow: auto;
  }
  
  .sidebar a {
    display: block;
    color: black;
    padding: 16px;
    text-decoration: none;
  }
   
  .sidebar a.active {
    background-color: #041aaa;
    color: white;
  }
  
  .sidebar a:hover:not(.active) {
    background-color: rgb(68, 10, 160);
    color: white;    
    transition: all 0.5s ease;
  }
  
  
  @media screen and (max-width: 700px) {
    .sidebar {
      width: 100%;
      height: auto;
      position: relative;
    }
    .sidebar a {float: left;}
    div.content {margin-left: 0;}
  }
  
  @media screen and (max-width: 400px) {
    .sidebar a {
      text-align: center;
      float: none;
    }
  }
  
  .report h2{
  font-family: "Gill Sans Extrabold", sans-serif;
  text-align: center;
  color: #08198d;
  font-size: 50px;
  }
  .clearfix:after {
    content: " ";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
  }
  .dash-tile{
    width: 21%;
    background-color: #E65D5D;
    color: #FFFFFF;
    margin: 1%;
    padding: 5% 1%;
    text-align: center;
    line-height: 50px;
    float: left;
    cursor: pointer;
  }
  .dash-tile:hover{
    box-shadow: 0 0 5px 1px black;
  }

  /* add students css here*/
 

.registration-form{
	padding: 50px 0;
}

.registration-form form{
    background-color: #fff;
    max-width: 600px;
    margin: auto;
    padding: 50px 70px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
}

.registration-form .form-icon{
	text-align: center;
    background-color: #5891ff;
    border-radius: 50%;
    font-size: 40px;
    color: white;
    width: 100px;
    height: 100px;
    margin: auto;
    margin-bottom: 50px;
    line-height: 100px;
}

.registration-form .item{
	border-radius: 20px;
    margin-bottom: 25px;
    padding: 10px 20px;
}

.registration-form .create-account{
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    background-color: #5791ff;
    border: none;
    color: white;
    margin-top: 20px;
}

.registration-form .social-media{
    max-width: 600px;
    background-color: #fff;
    margin: auto;
    padding: 35px 0;
    text-align: center;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    color: #9fadca;
    border-top: 1px solid #dee9ff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
}

.registration-form .social-icons{
    margin-top: 30px;
    margin-bottom: 16px;
}
h2{
  text-align: center;
}




.registration-form .social-icons a{
    font-size: 23px;
    margin: 0 3px;
    color: #5691ff;
    border: 1px solid;
    border-radius: 50%;
    width: 45px;
    display: inline-block;
    height: 45px;
    text-align: center;
    background-color: #fff;
    line-height: 45px;
}

.registration-form .social-icons a:hover{
    text-decoration: none;
    opacity: 0.6;
}

@media (max-width: 576px) {
    .registration-form form{
        padding: 50px 20px;
    }

    .registration-form .form-icon{
        width: 70px;
        height: 70px;
        font-size: 30px;
        line-height: 70px;
    }
}



.jumbotron{
  background-color: #1359c4ca;
  padding: 10px;
  box-shadow: 0px 5px rgba(85, 85, 85, 0.477);
}
.jumbotron h1{
  color: white;
  font-weight:500;
}

.footer{
  background-color: #0205a4;
  color: #FFFFFF;
}
.footer p{
  text-align: center;
}
.footer p a{
  color: #A1CD3C;
  text-decoration: none;
}
.footer p a:hover{
  color: #F5E923;
}