*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f4f4f4;

}
.container{
	display: flex;
	width: 100vw;
	height: 100vh;
}

.left-panel {
	flex: 7;
	background-color: #f0f0f0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.left-panel img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.right-panel {
	flex: 3;
	background-color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	box-shadow: -10px 0 20px rgba(0, 0, 0, 0.1);
}

.login-form {
	width: 100%;
	max-width: 400px;
	text-align: center;
}

.logo {
	width: 150px;
	margin-bottom: 1rem;
}


.title {
	margin-bottom: 20px;
	color: #333;
	text-transform: uppercase;
	font-size: 1.8rem;
}

.input-div {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	border-bottom: 2px solid #ccc;
	position: relative;
	padding: 5px 0;
}

.input-div .i {
	padding: 10px;
	color: #d9d9d9;
	
}

.input-div .div {
	flex: 1;
	position: relative;
}



.i i{
	transition: .3s;
}


.input-div .div h5 {
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	color: #999;
	font-size: 16px;
	transition: 0.3s;
	pointer-events: none;
}

.input-div .div input {
	width: 100%;
	padding: 10px 10px 10px 40px;
	border: none;
	outline: none;
	background: transparent;
	color: #333;
	font-size: 16px;
}

.input-div.focus h5 {
	top: -5px;
	font-size: 12px;
}

.input-div:before, .input-div:after{
	content: '';
	position: absolute;
	bottom: -2px;
	width: 0%;
	height: 2px;
	background-color: #d64040;
	transition: .4s;
}

.input-div:before{
	right: 50%;
}

.input-div:after{
	left: 50%;
}

.input-div.focus:before, .input-div.focus:after{
	width: 50%;
}

.input-div.focus > div > h5{
	top: -5px;
	font-size: 15px;
}

.input-div.focus > .i > i{
	color: #d64040;
}



.input-div.focus h5 {
	top: -5px;
	font-size: 12px;
}

a{
	display: block;
	text-align: right;
	text-decoration: none;
	color: #999;
	font-size: 0.9rem;
	transition: .3s;
}

a:hover{
	color: #d64040;
}

.btn{
	display: block;
	width: 100%;
	height: 50px;
	border-radius: 25px;
	outline: none;
	border: none;
	background-image: linear-gradient(to right, #d64040, #eb5c5c, #d64040);
	background-size: 200%;
	font-size: 1.2rem;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	margin: 1rem 0;
	cursor: pointer;
	transition: .5s;
}
.btn:hover{
	background-position: right;
}

.socials {
	margin-top: 30px;
	color: #777;
	font-size: 0.85rem;
}

.socials i {
	margin: 0 10px;
	cursor: pointer;
	color: #555;
}

@media (max-width: 900px) {
	.container {
		flex-direction: column;
	}

	.left-panel {
		display: none;
	}

	.right-panel {
		width: 100%;
		box-shadow: none;
	}
}
