@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppings", sans-serif;
}

body,
input {
	font-family: 'Poppins', sans-serif;
}

.container {
	position: absolute;
	width: 100%;
	background-color: #fff;
	min-height: 100%;
	overflow: hidden; 
}

.forms-container {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

form {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 5rem;
	grid-column: 1 / 2;
	grid-row: 1 / 2;
}

.title {
	font-size: 1.5rem;
	color: #444;
	margin-bottom: 10px;
}

.input-field {
	max-width: 400px;
	width: 100%;
	height: 40px;
	background-color: #f0f0f0;
	margin: 20px 0px;
	border-radius: 40px;
	display: grid;
	grid-template-columns: 15% 85%;
	padding: 0 0.4rem;
	position: relative;
}

.input-field i {
	text-align: center;
	line-height: 40px;
	color: #acacac;
	font-size: 1rem;
}

.input-field input {
	background: none;
	outline: none;
	border: none;
	line-height: 1;
	font-weight: 150;
	font-size: 1rem;
	color: #333;
}

.input-field input:placeholder-shown {
	color: #aaa;
	font-weight: 5000;
}

.btn {
	width: 100%;
	height: 40px;
	outline: none;
	border: none;
	border-radius: 40px;
	background-color: #20dbc2;
	color: white;
	text-transform: uppercase;
	font-weight: 600;
	margin: 10px 0px;
	transition: all 0.5s;
}

.btn:hover {
	background-color: #ffffff;
	color: #00bfa6;
	border: 0.5px solid #00bfa6;
}
/* 
.social-text {
	padding: 0.7rem 0;
}

.social-media {
	display: flex;
	justify-content: center;
}

.social-icon {
	height: 46px;
	width: 46px;
	border: 1px solid #333;
	margin: 0 0.45rem;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: #333;
	font-size: 1.3rem;
	border-radius: 50%;
	transition: all 0.5s;
}

.social-icon:hover {
	color: #20dbc2;
	border-color: #00bfa6;
} */


.signin-signup {
	position: absolute;
	top: 50%;
	left: 75%;
	transform: translate(-50%, -50%);
	display: grid;
	grid-template-columns: 1fr;
	z-index: 5;
}

/* form.sign-in-form {
	z-index: 2;
} */

/* form.sign-up-form {
	z-index: 1;
	opacity: 0;
} */

.container::before {
	content: '';
	position: absolute;
	height: 2000px;
	width: 2000px;
	top: -10%;
	right: 48%;
	background-image: linear-gradient(-45deg, #20dbc2 0%, #00bfa6 100%);
	transform: translateY(-50%);
	border-radius: 50%;
	z-index: 6;
	transition: 1.8s ease-in-out;
}

.image {
	width: 100%;
	transition: 0.9s 0.6s ease-in-out;
}

.panels-container {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.panel {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	z-index: 7; 
}

.left-panel {
	padding: 3rem 17% 2rem 12%;
}

/* .right-panel {
	padding: 3rem 12% 2rem 17%;
} */

.panel .content {
	color: #fff;
	transition: 0.9s 0.6s ease-in-out;
}

.panel h3 {
	font-weight: 600;
	line-height: 1;
	font-size: 1.5rem;
}

.panel p {
	font-size: .95rem;
	padding: 0.7rem 0;
}

.btn.transparent {
	margin: 0;
	background: none;
	border: 2px solid #fff;
	width: 130px;
	height: 41px;
	font-weight: 600;
	font-size: 0.8rem;
}

/* .right-panel .content,
.right-panel .image {
	transform: translateX(800px);
} */

/*Animation*/
/* 
.container.sign-up-mode::before{
	transform: translate(100%, -50%);
	right: 70%;
}

.container.sign-up-mode .left-panel .image,
.container .sign-up-mode .left-panel .content {
	transform: translate(800px);
} */


@media screen and (max-width: 300px) {
	.title {
		font-size: 1rem;
		color: #444;
		margin-bottom: 10px;
	}

	.left-panel {
		padding: 0rem 30% 30rem 7%;
	}
	
	.input-field {
		max-width: 400px;
		width: 55%;
		height: 30px;
		background-color: #f0f0f0;
		margin: 6px 0px;
		border-radius: 40px;
		display: grid;
		grid-template-columns: 15% 85%;
		padding: 0 0.4rem;
		position: relative;
	}
	
	.input-field i {
		text-align: center;
		line-height: 30px;
		color: #acacac;
		font-size: 0.7rem;
	}
	
	.input-field input {
		background: none;
		outline: none;
		border: none;
		line-height: 1;
		font-weight: 100;
		font-size: 1rem;
		color: #333;
	}
	
	.input-field input:placeholder-shown {
		color: #aaa;
		font-size: 0.8rem;
	}
	
	.btn {
		width: 50%;
		height: 40px;
		outline: none;
		border: none;
		border-radius: 40px;
		background-color: #20dbc2;
		color: white;
		text-transform: uppercase;
		font-weight: 300;
		margin: 10px 0px;
		transition: all 0.5s;
	}

	.signin-signup {
		position: absolute;
		top: 60%;
		left: 76%;
		transform: translate(-50%, -50%);
		display: grid;
		grid-template-columns: 1fr;
		z-index: 5;
	}

	p {
		
		font-size: 0.8rem;
	}
}

@media screen and (max-width: 550px) {
	.title {
		font-size: 1rem;
		color: #444;
		margin-bottom: 10px;
	}
	
	.input-field {
		max-width: 400px;
		width: 75%;
		height: 40px;
		background-color: #f0f0f0;
		margin: 8px 0px;
		border-radius: 40px;
		display: grid;
		grid-template-columns: 15% 85%;
		padding: 0 0.4rem;
		position: relative;
	}
	
	.input-field i {
		text-align: center;
		line-height: 40px;
		color: #acacac;
		font-size: 0.8rem;
	}
	
	.input-field input {
		background: none;
		outline: none;
		border: none;
		line-height: 1;
		font-weight: 100;
		font-size: 1rem;
		color: #333;
	}
	
	.input-field input:placeholder-shown {
		color: #aaa;
		font-size: 0.8rem;
	}
	
	.btn {
		width: 50%;
		height: 40px;
		outline: none;
		border: none;
		border-radius: 40px;
		background-color: #20dbc2;
		color: white;
		text-transform: uppercase;
		font-weight: 300;
		margin: 10px 0px;
		transition: all 0.5s;
	}

	.signin-signup {
		position: absolute;
		top: 60%;
		left: 76%;
		transform: translate(-50%, -50%);
		display: grid;
		grid-template-columns: 1fr;
		z-index: 5;
	}

	p {
		
		font-size: 0.8rem;
	}
  }

@media  screen and (max-width: 600px) {
	.title {
		font-size: 1rem;
		color: #444;
		margin-bottom: 10px;
	}
	
	.input-field {
		max-width: 400px;
		width: 75%;
		height: 40px;
		background-color: #f0f0f0;
		margin: 5px 0px;
		border-radius: 40px;
		display: grid;
		grid-template-columns: 15% 85%;
		padding: 0 0.4rem;
		position: relative;
	}
	
	.input-field i {
		text-align: center;
		line-height: 40px;
		color: #acacac;
		font-size: 0.8rem;
	}
	
	.input-field input {
		background: none;
		outline: none;
		border: none;
		line-height: 1;
		font-weight: 100;
		font-size: 1rem;
		color: #333;
	}
	
	.input-field input:placeholder-shown {
		color: #aaa;
		font-size: 0.8rem;
	}
	
	.btn {
		width: 50%;
		height: 40px;
		outline: none;
		border: none;
		border-radius: 40px;
		background-color: #20dbc2;
		color: white;
		text-transform: uppercase;
		font-weight: 300;
		margin: 10px 0px;
		transition: all 0.5s;
	}

	.signin-signup {
		position: absolute;
		top: 60%;
		left: 75%;
		transform: translate(-50%, -50%);
		display: grid;
		grid-template-columns: 1fr;
		z-index: 5;
	}
	p {
		
		font-size: 0.8rem;
	}
  }

  @media  screen and (max-width: 700px) {
	.title {
		font-size: 1rem;
		color: #444;
		margin-bottom: 10px;
	}
	
	.input-field {
		max-width: 400px;
		width: 75%;
		height: 40px;
		background-color: #f0f0f0;
		margin: 8px 0px;
		border-radius: 40px;
		display: grid;
		grid-template-columns: 15% 85%;
		padding: 0 0.4rem;
		position: relative;
	}
	
	.input-field i {
		text-align: center;
		line-height: 40px;
		color: #acacac;
		font-size: 0.8rem;
	}
	
	.input-field input {
		background: none;
		outline: none;
		border: none;
		line-height: 1;
		font-weight: 100;
		font-size: 1rem;
		color: #333;
	}
	
	.input-field input:placeholder-shown {
		color: #aaa;
		font-size: 0.8rem;
	}
	
	.btn {
		width: 50%;
		height: 40px;
		outline: none;
		border: none;
		border-radius: 40px;
		background-color: #20dbc2;
		color: white;
		text-transform: uppercase;
		font-weight: 300;
		margin: 10px 0px;
		transition: all 0.5s;
	}

	.signin-signup {
		position: absolute;
		top: 50%;
		left: 76%;
		transform: translate(-50%, -50%);
		display: grid;
		grid-template-columns: 1fr;
		z-index: 5;
	}

	@media only screen and (max-width: 550px) {
		.title {
			font-size: 1rem;
			color: #444;
			margin-bottom: 10px;
		}
		
		.input-field {
			max-width: 400px;
			width: 75%;
			height: 40px;
			background-color: #f0f0f0;
			margin: 8px 0px;
			border-radius: 40px;
			display: grid;
			grid-template-columns: 15% 85%;
			padding: 0 0.4rem;
			position: relative;
		}
		
		.input-field i {
			text-align: center;
			line-height: 40px;
			color: #acacac;
			font-size: 0.8rem;
		}
		
		.input-field input {
			background: none;
			outline: none;
			border: none;
			line-height: 1;
			font-weight: 100;
			font-size: 1rem;
			color: #333;
		}
		
		.input-field input:placeholder-shown {
			color: #aaa;
			font-size: 0.8rem;
		}
		
		.btn {
			width: 50%;
			height: 40px;
			outline: none;
			border: none;
			border-radius: 40px;
			background-color: #20dbc2;
			color: white;
			text-transform: uppercase;
			font-weight: 300;
			margin: 10px 0px;
			transition: all 0.5s;
		}
	
		.signin-signup {
			position: absolute;
			top: 60%;
			left: 76%;
			transform: translate(-50%, -50%);
			display: grid;
			grid-template-columns: 1fr;
			z-index: 5;
		}
	
		p {
			
			font-size: 0.8rem;
		}
	  }
	
	@media only screen and (max-width: 600px) {
		.title {
			font-size: 1rem;
			color: #444;
			margin-bottom: 10px;
		}
		
		.input-field {
			max-width: 400px;
			width: 75%;
			height: 40px;
			background-color: #f0f0f0;
			margin: 5px 0px;
			border-radius: 40px;
			display: grid;
			grid-template-columns: 15% 85%;
			padding: 0 0.4rem;
			position: relative;
		}
		
		.input-field i {
			text-align: center;
			line-height: 40px;
			color: #acacac;
			font-size: 0.8rem;
		}
		
		.input-field input {
			background: none;
			outline: none;
			border: none;
			line-height: 1;
			font-weight: 100;
			font-size: 1rem;
			color: #333;
		}
		
		.input-field input:placeholder-shown {
			color: #aaa;
			font-size: 0.8rem;
		}
		
		.btn {
			width: 50%;
			height: 40px;
			outline: none;
			border: none;
			border-radius: 40px;
			background-color: #20dbc2;
			color: white;
			text-transform: uppercase;
			font-weight: 300;
			margin: 10px 0px;
			transition: all 0.5s;
		}
	
		.signin-signup {
			position: absolute;
			top: 60%;
			left: 75%;
			transform: translate(-50%, -50%);
			display: grid;
			grid-template-columns: 1fr;
			z-index: 5;
		}
		p {
			
			font-size: 0.8rem;
		}
	  }
	
	  @media only screen and (max-width: 700px) {
		.title {
			font-size: 1rem;
			color: #444;
			margin-bottom: 10px;
		}
		
		.input-field {
			max-width: 400px;
			width: 75%;
			height: 40px;
			background-color: #f0f0f0;
			margin: 8px 0px;
			border-radius: 40px;
			display: grid;
			grid-template-columns: 15% 85%;
			padding: 0 0.4rem;
			position: relative;
		}
		
		.input-field i {
			text-align: center;
			line-height: 40px;
			color: #acacac;
			font-size: 0.8rem;
		}
		
		.input-field input {
			background: none;
			outline: none;
			border: none;
			line-height: 1;
			font-weight: 100;
			font-size: 1rem;
			color: #333;
		}
		
		.input-field input:placeholder-shown {
			color: #aaa;
			font-size: 0.8rem;
		}
		
		.btn {
			width: 50%;
			height: 40px;
			outline: none;
			border: none;
			border-radius: 40px;
			background-color: #20dbc2;
			color: white;
			text-transform: uppercase;
			font-weight: 300;
			margin: 10px 0px;
			transition: all 0.5s;
		}
	
		.signin-signup {
			position: absolute;
			top: 50%;
			left: 76%;
			transform: translate(-50%, -50%);
			display: grid;
			grid-template-columns: 1fr;
			z-index: 5;
		}
	
		p {
			
			font-size: 0.8rem;
		}
	  }
	
	  @media only screen and (max-width: 760px) {
		.title {
			font-size: 1rem;
			color: #444;
			margin-bottom: 10px;
		}
		
		.input-field {
			max-width: 400px;
			width: 75%;
			height: 40px;
			background-color: #f0f0f0;
			margin: 8px 0px;
			border-radius: 40px;
			display: grid;
			grid-template-columns: 15% 85%;
			padding: 0 0.4rem;
			position: relative;
		}
		
		.input-field i {
			text-align: center;
			line-height: 40px;
			color: #acacac;
			font-size: 0.8rem;
		}
		
		.input-field input {
			background: none;
			outline: none;
			border: none;
			line-height: 1;
			font-weight: 100;
			font-size: 1rem;
			color: #333;
		}
		
		.input-field input:placeholder-shown {
			color: #aaa;
			font-size: 0.8rem;
		}
		
		.btn {
			width: 50%;
			height: 40px;
			outline: none;
			border: none;
			border-radius: 40px;
			background-color: #20dbc2;
			color: white;
			text-transform: uppercase;
			font-weight: 300;
			margin: 10px 0px;
			transition: all 0.5s;
		}
	
		.signin-signup {
			position: absolute;
			top: 50%;
			left: 76%;
			transform: translate(-50%, -50%);
			display: grid;
			grid-template-columns: 1fr;
			z-index: 5;
		}
	
		p {
			
			font-size: 0.8rem;
		}
	  }
  }

  @media only screen and (max-width: 760px) {
	.title {
		font-size: 1rem;
		color: #444;
		margin-bottom: 10px;
	}
	
	.input-field {
		max-width: 400px;
		width: 75%;
		height: 40px;
		background-color: #f0f0f0;
		margin: 8px 0px;
		border-radius: 40px;
		display: grid;
		grid-template-columns: 15% 85%;
		padding: 0 0.4rem;
		position: relative;
	}
	
	.input-field i {
		text-align: center;
		line-height: 40px;
		color: #acacac;
		font-size: 0.8rem;
	}
	
	.input-field input {
		background: none;
		outline: none;
		border: none;
		line-height: 1;
		font-weight: 100;
		font-size: 1rem;
		color: #333;
	}
	
	.input-field input:placeholder-shown {
		color: #aaa;
		font-size: 0.8rem;
	}
	
	.btn {
		width: 50%;
		height: 40px;
		outline: none;
		border: none;
		border-radius: 40px;
		background-color: #20dbc2;
		color: white;
		text-transform: uppercase;
		font-weight: 300;
		margin: 10px 0px;
		transition: all 0.5s;
	}

	.signin-signup {
		position: absolute;
		top: 50%;
		left: 76%;
		transform: translate(-50%, -50%);
		display: grid;
		grid-template-columns: 1fr;
		z-index: 5;
	}
  }