*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
body{
	width: 100%;
	height: 100vh;
	background: linear-gradient(135deg,#2C3E50 , #3498DB);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0px 8%;
}


.wrapper{
	position: relative;
	background-color: #fefefe;
	width: 780px;
	min-height: 490px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.10), 0 10px 5px rgba(0,0,0,0.20);
	overflow: hidden;
}
.form-container{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 0.6s ease-in-out;
}
.signIn-container, .signUp-container{
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	z-index: 2;
	/*background-color: lightgreen;*/
}
.wrapper.signUp-active .signIn-container{
	transform: translateX(100%);
	opacity: 0;
}
.signUp-container{
	/*background-color: lightblue;*/
	/*transform: translateX(100%);*/
	z-index: 1;
	opacity: 0;
}
.wrapper.signUp-active .signUp-container{
	transform: translateX(100%);
	opacity: 1;
	z-index: 5;
}
.form-container form{
	padding: 0px 50px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.form-container form h1,
.overlay-panel h1{
	font-weight: 700;
}
.form-container form p,
.overlay-panel p{
	font-size: 14px;
	font-weight: 400;
	line-height: 19px;
	letter-spacing: 0.5px;
	margin: 22px 0px 20px;
	opacity: 0.7;
}
.form-container form .social-media{
	position: relative;
	display: flex;
	margin-top: 20px;
}
.form-container form .social-media a{
	height: 40px;
	width: 40px;
	border: 1px solid #dddddd;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0px 6px;
	border-radius: 50%;
	color:  #3498DB;
	text-decoration: none;
	transition: background 0.8s, color 0.8s;
}
.form-container form .social-media a:hover{
	background-color: linear-gradient(135deg,#2C3E50 , #3498DB);
	color: white;
}
.form-container form input{
	background-color: #eee;
	border: none;
	padding: 12px 15px;
	margin: 8px 0px;
	width: 100%;
}
.form-container form button,
.overlay-panel button{
	padding: 16px 45px;
	background-color:  #3498DB;
	color: #fefefe;
	border: none;
	outline: none;
	border-radius: 25px;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-top: 15px;
	transition: background-color 0.1s ease-in;
	cursor: pointer;
}
.form-container form button:hover,
.overlay-panel button:hover{
	background-color: linear-gradient(135deg,#2C3E50 , #3498DB);
}
.overlay-panel button{
	border: 1px solid #eee;
}

.overlay-container{
	position: absolute;
	width: 50%;
	left: 50%;
	height: 100%;
	top: 0;
	overflow: hidden;
	transition: transform 0.6s ease-in-out;
	z-index: 100;
	/*background-color: yellow;*/
}
.wrapper.signUp-active .overlay-container{
	transform: translateX(-100%);
}
.overlay-container .overlay{
	position: relative;
	background: linear-gradient(to right,  #3498DB, #8483e1);
	color: #fefefe;
	height: 100%;
	width: 200%;
	left: -100%;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}
.wrapper.signUp-active .overlay-container .overlay{
	transform: translateX(50%);
}
.overlay .overlay-panel{
	position: absolute;
	width: 50%;
	height: 100%;
	top: 0;
	padding: 0px 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}
.overlay .overlay-left{
	transform: translateX(-20%);
}
.wrapper.signUp-active .overlay .overlay-left{
	transform: translateX(0);
}
.overlay .overlay-right{
	right: 0;
	transform: translateX(0);
}
.wrapper.signUp-active .overlay-right{
	transform: translateX(20%);
}



