html,body
{
    height: 100%;
    margin:0;
}
.noPadding
{
    padding:0 !important;
}
.backgroundStyle
{
	background-image: url("../images/img.jpg");
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0.4;
    background-color: #b0d8d9;
	position:fixed;
	top:0;
}
/* css for scrollbar  */

/* width */
::-webkit-scrollbar {
    width: 0.8vw;
   }
   
   /* Track */
   ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
   }
   
   /* Handle */
   ::-webkit-scrollbar-thumb {
    background:  #3f51b5; 
    border-radius: 10px;
   }
   
   /* Handle on hover */
   ::-webkit-scrollbar-thumb:hover {
    background: #fa4b2a; 
   }/* css for scrollbar  */
   
   /* width */
   ::-webkit-scrollbar {
    width: 0.8vw;
   }
   
   /* Track */
   ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
   }
   
   /* Handle */
   ::-webkit-scrollbar-thumb {
    background:  #3f51b5; 
    border-radius: 10px;
   }
   
   /* Handle on hover */
   ::-webkit-scrollbar-thumb:hover {
    background: #fa4b2a; 
   }
   .header
   {
       position:sticky;
       top:0;
       z-index:10;
   }
.header,.footer
{
    background-color: black;
    height:100px;
}
.logoDiv
{
    margin-top: 0.5vh;
}
.dropdown li
{
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
    font-weight: bold;
}
.dropdown-menu
{
    min-width: fit-content;
}
.btn-primary
{
    font-weight:bold;
    background-color: #ffde00;;
    border-color: #ffde00;
    color:black;
}
.footer
{
    position: fixed;
    bottom: 0;
    height:fit-content;
}
.socialImg
{
	background-color:white;
	border-radius:50%;
	margin-left:1vw;
}
.footerPart1
{
	margin-top:2vh;
}
.crlLogin,.crlSignup,.studentLogin,.tableDiv,.forgetPassword
{
    box-shadow: 0 6px 10px 0 rgba(0,0,0,.14), 0 1px 18px 0 rgba(0,0,0,.12), 0 3px 5px -1px rgba(0,0,0,.2);
	background-color:white;
}
.inputStyle
{
	border-radius: 4px;
    display: block;
    width:100%;
    background: white;
    border: 1px solid #ecebeb;
    box-shadow: none;
    color: black;
    padding: 6px 12px;
    font-size: 16px;
    letter-spacing: .025em;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    font-weight:bold;
}
option
{
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
    font-weight: bold;
    background-color:white;
}
.menus
{
    margin-left:1vw;
}
.formFields
{
	margin-bottom:3vh;
}
.loginHeader,.loginSubmit,.signUpHeader,.signUpBtn
{
    background-color:#337ab7;/* rgb(76,175,80) *//*#ffde0063; */
    color:white;
}
.signUp
{
    color:#337ab7;/* rgb(76,175,80); */
    font-weight:bold;
    font-size:20px;
}
.loginSubmit,.signUpBtn
{
    font-size:20px;
    font-weight:bold;
}
.container
{
    margin-top:5vh;
}
hr
{
    display: inline-block;
    width: 43%;
    border-top: 1px solid #3333336b;
    border-bottom: none;
    border-left: none;
    border-right: none;
    vertical-align: super;
    margin: 0;
}
.break
{
    display: inline-block;
    padding: 5px;
    color: #3333336b;
    text-indent: 0;
    margin-bottom: 0;
    font-size: 16px;
}
.dwldBatch
{
	font-size: 16px;
	padding: 6px 12px;
	color: black;
	font-weight:bold;
	border-radius: 4px;  
    border: 1px solid #ecebeb;
    box-shadow: none;
}
/* The message box is shown when the user clicks on the password field */
#message {
  display:none;
  color: #000;
  padding: 20px;
  margin-top: 10px;
  height:fit-content;
}

#message p {
  padding: 10px 35px;
  font-size: 18px;
}

/* Add a green text color and a checkmark when the requirements are right */
.valid {
  color: green;
}

.valid:before {
  position: relative;
  left: -35px;
  content: "✔";
}

/* Add a red text color and an "x" when the requirements are wrong */
.invalid {
  color: red;
}

.invalid:before {
  position: relative;
  left: -35px;
  content: "✖";
}