html, body {
            font-family: Arial, Helvetica, sans-serif;
			
}
		
.login {
  	width: 400px;
	position: absolute;
    top: 40%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
  	background-color: #ffffff;
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  	margin: 100px auto;
	justify-content: center;
}

.login h1 {
  	text-align: center;
  	color: #5b6574;
  	font-size: 24px;
  	padding: 20px 0 20px 0;
  	border-bottom: 1px solid #dee0e4;
}

.login form {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
  	padding-top: 20px;
}

.login form label {
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	width: 50px;
  	height: 50px;
  	background-color: #3274d6;
  	color: #ffffff;
}

.login form input[type="password"], .login form input[type="text"] {
  	width: 310px;
  	border: 1px solid #dee0e4;
  	margin-bottom: 20px;
  	padding: 0 15px;
}

.login form input[type="submit"] {
  	width: 100%;
  	padding: 15px;
	height: 50px;
 	margin-top: 20px;
  	background-color: #3274d6;
  	border: 0;
  	cursor: pointer;
  	font-weight: bold;
  	color: #ffffff;
  	transition: background-color 0.2s;
}

.login form input[type="submit"]:hover {
	background-color: #2868c7;
  	transition: background-color 0.2s;
}		
		
		
		
select{
	width:100%;
	height:30px;
	border-radius: 5px;
}	

label{
	color: white;
	font-size:18px;
	font-weight:bold;
}

.checkfam{
	display: block;
  position: relative;
 margin-top: 10px;
  margin-bottom: 10px;
	padding:6px 0 0 35px;
  cursor: pointer;
  font-size: 13px;
  
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkfam input{
	
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
	
}	
.checkmark {
	
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkfam:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkfam input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkfam input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkfam .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}





input{
	height:30px;
	border-radius: 5px;
	width:100%;
}

button{
	margin:2px;
	width:100%;
 background-color: #081f2d; 
 border-radius: 29px; 
 border: 1px solid #081F2D; 
 color: white; 
 font-size: 15px; 
 padding: 10px 45px; 
 cursor: pointer; 
 transition: 0.3s; 
}
button:hover{ 
 background-color: white; 
 color: #081F2D; 
 border-color: #081F2D; 
 transition: 0.3s; 
 } 	

button:active {
  background-color: #3e8e41;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}
		
.navigation {
  height: 100%; /* Full-height: remove this if you want "auto" height */
  width: 13%; /* Set the width of the sidebar */
  position: fixed; /* Fixed Sidebar (stay in place on scroll) */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: grey; /* Black */
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 20px;
}

/* The navigation menu links */
.mainmenu a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 20px;
  color: white;
  font-weight:bold;
  display: block;
}

.sidenav h2{
	text-align:center;
}

/* When you mouse over the navigation links, change their color */
.mainmenu a:hover {
	background-color:#A9A9A9;
}

/* Style page content */
.main {
 
  margin-left: 13%; /* Same as the width of the sidebar */
  padding: 0px 5px;

}

/* On smaller screens, where height is less than 450px, change the style of the sidebar (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}





        /* define a fixed width for the entire menu */
        

        /* reset our lists to remove bullet points and padding */
        .mainmenu, .submenu {
          list-style: none;
          padding: 0;
          margin: 0;
        }


        .submenu a {
          background-color: #999;
		  
        }

        /* hover behaviour for links inside .submenu */
        .submenu a:hover {
          background-color: #666;
		  
        }

        /* this is the initial state of all submenus.
          we set it to max-height: 0, and hide the overflowed content.
        */
        .submenu {
			padding: 5px;
          overflow: hidden;
          display: none;
          -webkit-transition: all 0.5s ease-out;
        }