body { background-color: #e6e6e6; }

.container-fluid {
	min-height: 100vh;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 1;
}
.container-fluid:before {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(93,84,240,0.5);
	background: -webkit-linear-gradient(left, rgba(0,168,255,0.5), rgba(185,0,255,0.5));
	background: -o-linear-gradient(left, rgba(0,168,255,0.5), rgba(185,0,255,0.5));
	background: -moz-linear-gradient(left, rgba(0,168,255,0.5), rgba(185,0,255,0.5));
	background: linear-gradient(left, rgba(0,168,255,0.5), rgba(185,0,255,0.5));
	pointer-events: none;
}

.centeredLoginBox {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	/*height: 300px;*/
	width: 340px;
}



.input_wrapper {
	position: relative;
	width: 100%;
	z-index: 1;
	margin-bottom: 10px;
}

.input {
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: #004359;

	display: block;
	width: 100%;
	background: #FFF;
	height: 50px;
	border-radius: 25px;
	padding: 0 30px 0 68px;

	outline: none;
	border: none;
}

.input_focus {
	display: block;
	position: absolute;
	border-radius: 25px;
	bottom: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	box-shadow: 0px 0px 0px 0px;
	color: rgba(0,180,255, 0.8);
}

.input:focus + .input_focus {
	-webkit-animation: anim-shadow 0.5s ease-in-out forwards;
			animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow { to { box-shadow: 0px 0px 70px 25px; opacity: 0; } }
@keyframes anim-shadow { to { box-shadow: 0px 0px 70px 25px; opacity: 0; } }

.input_symbol {
	font-size: 15px;

	display:  -webkit-box;
	display: -webkit-flex;
	display: 	 -moz-box;
	display:  -ms-flexbox;
	display: flex;
	align-items: center;
	position: absolute;
	border-radius: 25px;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding-left: 35px;
	pointer-events: none;
	color: #666666;

	-webkit-transition: all 0.4s;
		 -o-transition: all 0.4s;
	   -moz-transition: all 0.4s;
			transition: all 0.4s;
}

.input:focus + .input_focus + .input_symbol { color: #00b4ff; padding-left: 28px; }

.loginBtn_wrapper {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.loginBtn {
	outline: none !important;
	border: none;
	background: transparent;

	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	line-height: 1.5;
	color: #fff;
	text-transform: uppercase;

	width: 100%;
	height: 50px;
	border-radius: 25px;
	background: #214188;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 25px;

	-webkit-transition: all 0.4s;
		 -o-transition: all 0.4s;
	   -moz-transition: all 0.4s;
			transition: all 0.4s;
}

.loginBtn:hover { background: #fcee21; color: #000; cursor: pointer; }

footer {
	margin-top: 10px;
	padding: 15px 10px 5px 10px;
	background: rgba(0,0,0,0.6);
	border-radius: 30px;
}

footer h4 {
	margin-top: 0;
	color: #FFF;
}

footer p {
	color: #FFF;
	font-size: 12px;
}

footer a {
	color: #FFF;
	font-weight: bold;
	text-decoration: underline;
}

footer a:hover {
	color: #000;
	text-decoration: none;
}
