* {
  	box-sizing: border-box;
  	font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
  	font-size: 16px;
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
}
body {
  	background-color: #F9F9F9;
}
.login {
  	width: 400px;
  	background-color: #ffffff;
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  	margin: 100px auto;
}
.login_header img {
        height: 12%;
        width: 18%;
}
.login_header h1 {
        display: inline;
        color: #5b6574;
        font-size: 24px;
        //padding: 20px 0 20px 0;
        margin: 0;
}
.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: #5195CE;
  	color: #ffffff;
}
.login form input[type="password"], .login form input[type="text"] {
  	width: 310px;
  	height: 50px;
  	border: 1px solid #dee0e4;
  	margin-bottom: 20px;
  	padding: 0 15px;
}
.login form input[type="submit"] {
  	width: 100%;
  	padding: 15px;
 	margin-top: 20px;
  	background-color: #5195CE;
  	border: 0;
  	cursor: pointer;
  	font-weight: bold;
  	color: #ffffff;
  	transition: background-color 0.2s;
}
.login form input[type="submit"]:hover {
	background-color: #005DB3;
  	transition: background-color 0.2s;
}


.navtop {
	background-color: #005DB3;
	height: 60px;
	width: 100%;
	border: 0;
}
.navtop div {
	display: flex;
	margin: 0 auto;
	width: 85%;
	height: 100%;
}
.navtop div h1, .navtop div a {
	display: inline-flex;
	align-items: center;
}
.navtop div h1 {
	flex: 1;
	font-size: 18px;
	padding: 0;
	margin: 0;
	color: #eaebed;
	font-weight: bold;
}
.navtop div a {
	padding: 0 10px;
	font-size: 14px;
	text-decoration: none;
	color: #c1c4c8;
	font-weight: bold;
}
.navtop div a i {
	padding: 2px 6px 0 0;
}
.navtop div a:hover {
	color: #eaebed;
}

.wrapper {
        width: 85%;
        margin: 0 auto;
}

.table th {
        background-color: #5195CE;
        color: white;
}

.table tr:nth-child(even) {
        background: #E6E6E6;
}

.filter {
        background-color: #ffffff;
        border: 1px solid #e6e6e6;
	height: 55px;
        //padding: 2px;
        margin: 0 auto;
        margin-bottom: 15px;
        //text-align: center;
}

.filter select {
	width: 150px;
	height: 30px;
	//margin: 0 auto;
        margin-top: 10px;
	margin-bottom: 10px;
}

.filter button {
	//height: 30px;
	//margin: 0 auto;
        margin-top: 10px;
        margin-bottom: 10px;
}

.message{
        text-align: center;

}

.search {
  width: 30%;
  position: relative;
  display: flex;
}

.searchTerm {
  width: 100%;
  border: 2px solid #5195CE;
  border-right: none;
  padding: 5px;
  height: 36px;
  border-radius: 5px 0 0 5px;
  outline: none;
  color: black;
}

.searchTerm:focus{
  color: #5195CE;
}

.searchButton {
  width: 40px;
  height: 36px;
  border: 1px solid #5195CE;
  background: #5195CE;
  text-align: center;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 20px;
}

.footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   height: 42px;
   padding: 8px;
   //padding-top: 10px;
   background-color: #005DB3;
   color: #c1c4c8;
   font-weight: normal;
   text-align: center;
}

