html,
body {
	height: 100%;
  font-family: 'Nunito Sans',arial,sans-serif;
}
body {
	background: url('images/bg/login-bg.jpg') center center no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}
.overlay {
	background: radial-gradient(transparent,rgba(5,22,100,0.6));
	height: 100%;
	width: 100%;
	padding-top: 150px;
}
.box {
	background: #ffffff;
	border: 1px solid #203995;
	margin: 0 auto 0 auto;
	max-width: 400px;
	-webkit-box-shadow: 1px 6px 15px rgba(0,0,0,0.4);
	-moz-box-shadow: 1px 6px 15px rgba(0,0,0,0.4);
	box-shadow: 1px 6px 15px rgba(0,0,0,0.4);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.box img {
	width: 100%;
	height: auto;
	max-width: 200px;
	display: block;
	margin: 0 auto 30px auto;
}
.box .border {
	background-color: #3F56C6;
	height: 10px;
	-webkit-border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	border-radius: 4px 4px 0 0;
}
.box .border.bottom {
	background-color: #203995;
	-webkit-border-radius: 0 0 4px 4px;
	-moz-border-radius: 0 0 4px 4px;
	border-radius: 0 0 4px 4px;
}
.box .body {
	padding: 30px;
}
h4 {
	font-size: 16px;
	margin-top: 20px;
}
.btn-default {
	width: 100%;
	display: block;
	font-size: 18px;
	margin-top: 15px;
	color: #ffffff;
	border: 0;
	padding: 10px;
	background: #69C365;
	background: -webkit-linear-gradient(#3F56C6,#203995);
	background: -moz-linear-gradient(#3F56C6,#203995);
	background: -o-linear-gradient(#3F56C6,#203995);
	background: linear-gradient(#3F56C6,#203995);
}
.btn-default:hover,
.btn-default:focus {
	background: #203995 !important;
	color: #ffffff !important;
}
.form-control {
	background-color: #f9f9f9;
	border-radius: 0;
	font-size: 16px;
	height: 40px;
}
.form-control:focus {
  border-color: #203995;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(5,22,100,0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(5,22,100,0.6);
  background-color: #F0F3FF;
}
.has-error .form-control {
	background-color: #FFEEEE;
}
.alert {
	padding: 10px;
}
.alert .alert-danger {
	background: #FFEEEE;
}
footer {
	text-align: center;
	margin: 30px 0;
	color: #ffffff;
	text-shadow: 1px 1px 2px #000000;
}
@media(max-width:480px){
	.overlay {
		padding: 15px;
	}
}
