@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800');
		
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

.msg-alert {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	background-color: #ff0000;
}

.msg-alert p {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	color: #fff;
	font-weight: bold;
	padding: 5px 0;
}

.login-container {
	width: 100%;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px;
	background: linear-gradient(141deg, #000431 0%, #0bbfd6 81%);
}

.panel {
	width: 960px;
	border-radius: 10px;
	padding: 45px 130px 45px 95px;
	background: #fff;
}

.panel .panel-title {
	margin-bottom: 60px;
	font-size: 26px;
	font-weight: 700;
	color: #333;
	text-align: center;
}

.panel .panel-footer {
	margin-top: 60px;
	font-size: 13px;
	color: #333;
	text-align: center;
}

.panel .form-panel {
	display: flex;
	justify-content: space-between;
}

.left-panel {
	width: 316px;
}

.right-panel {
	width: 290px;
	text-align: center;
}

.form-title {
	font-size: 26px;
	font-weight: 700;
	color: #333;
	line-height: 1.2;
	padding-bottom: 54px;
}

.input-wrapper {
	width: 100%;
	margin-bottom: 10px;
	position: relative;
}

input[type="text"], input[type="password"] {
	width: 100%;
	height: 50px;
	display: block;
	border: 0;
	border-radius: 25px;
	outline: none;
	font-size: 15px;
	letter-spacing: 1px;
	line-height: 1.5;
	padding: 0 30px 0 68px;
	color: #666;
	background: #e6e6e6;
}

.fa {
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex !important;
	font-size: 15px;
	pointer-events: none;
	color: #666;
	align-items: center;
	padding-left: 35px;
	transition: all 0.4s;
}

input[type="text"]:focus + .fa, input[type="password"]:focus + .fa {
	color: #57b846;
	padding-left: 25px;
}

input[type="text"]:focus, input[type="password"]:focus {
	-webkit-animation: anim-shadow 0.5s ease-in-out;
	animation: anim-shadow 0.5s ease-in-out;
}
	
@-webkit-keyframes anim-shadow {
	from {
		box-shadow: 0 0 10px 7px rgba(11, 191, 214, 0.7);
	}
	to {
		box-shadow: 0 0 70px 25px rgba(11, 191, 214, 0);
	}
}

@keyframes anim-shadow {
	from {
		box-shadow: 0 0 10px 7px rgba(11, 191, 214, 0.7);
	}
	to {
		box-shadow: 0 0 70px 25px rgba(11, 191, 214, 0);
	}
}

input[type="submit"] {
	width: 100%;
	height: 50px;
	margin-top: 30px;
	display: flex;
	justify-content: center;
	border: none;
	border-radius: 25px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5;
	background: #000431;
	color: #fff;
	cursor: pointer;
	transition: all 0.4s;
}

input[type="submit"]:hover {
	background: #0bbfd6;
}