@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800');

* {
	margin: 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: #ffffff;
	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,#0fb8ad 0%,#1fc8db 51%,#2cb5e8 75%);
}

.panel {
	width: 960px;
	display: flex;
	justify-content: space-between;
	border-radius: 10px;
	padding: 130px 130px 130px 95px;
	background: #ffffff;
}

.left-panel {
	width: 316px;
}

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

.form-title {
	width: 100%;
	display: block;
	font-size: 26px;
	font-weight: 700;
	color: #333333;
	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: #666666;
	background: #e6e6e6;
}

.fa {
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex !important;
	font-size: 15px;
	pointer-events: none;
	color: #666666;
	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(87,184,70,0.7);
	}
	to {
		box-shadow: 0 0 70px 25px rgba(87,184,70,0);
	}
}

@keyframes anim-shadow {
	from {
		box-shadow: 0 0 10px 7px rgba(87,184,70,0.7);
	}
	to {
		box-shadow: 0 0 70px 25px rgba(87,184,70,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: #57b846;
	color: #ffffff;
	cursor: pointer;
	transition: all 0.4s;
}

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

.forgot {
	font-size: 13px;
	line-height: 1.5;
	padding-top: 15px;
}

.text-1 {
	color: #999999;
}

.link-1 {
	text-decoration: none;
	color: #666666;
}