* {
  	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;
  	padding: 0;
	margin: 0;
}


html {
background-color: #2e3238;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
padding: 0;
margin: 0;
height: 100%;
}

.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
.se-pre-con {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: url(../images/preload.gif) center no-repeat #fff;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alert {  position: fixed;
  border-radius: 10px;
  display: none;
  width: 500px;
  padding: 20px;
  background-color: #f44336;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  color: white;
  left: 0;
  right: 0;
  top: 15px;
  margin-left: auto;
  margin-right: auto;
  opacity: 1;
  transition: opacity 0.6s;
  margin-bottom: 15px;
}

.alert.success {background-color: #4CAF50;}
.alert.info {background-color: #2196F3;}
.alert.warning {background-color: #ff9800;}

.alert2 {
  position: fixed;
  border-radius: 10px;
  width: 500px;
  padding: 20px;
  background-color: #f44336;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  color: white;
  left: 0;
  right: 0;
  top: 200px;
  margin-left: auto;
  margin-right: auto;
  opacity: 1;
  transition: opacity 0.6s;
  margin-bottom: 15px;
}
.alert2.warning {background-color: #ff9800;}

.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: black;
}

.login {
    border-radius: 10px;
  	width: 500px;
  	background-color: #ffffff;
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  	margin: 125px auto;

}
.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: #042445;
  	color: #ffffff;
}
.login form input[type="password"], .login form input[type="text"] {
  	width: 420px;
  	height: 50px;
  	border: 1px solid #dee0e4;
  	margin-bottom: 20px;
  	padding: 0 15px;
}
.login form input[type="submit"] {
  	width: 94%;
  	padding: 15px;
 	margin-top: 10px;
 	margin-bottom: 20px;
  	background-color: #042445;
  	border: 0;
  	cursor: pointer;
  	font-weight: bold;
  	color: #ffffff;
  	transition: background-color 0.2s;
}
.login form input[type="submit"]:hover {
	background-color: #2c7ba9;
  	transition: background-color 0.2s;
}