
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url(https://fonts.googleapis.com/css?family=Roboto:500);

* {
	box-sizing: border-box;
    margin: 0;
}

body {
	background-image: url('static/2.jpg');
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-family: "Poppins", sans-serif;
	height: 100vh;
	
}

#home {
  background-color: #fd9458;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  border: none;
  position: fixed;
  left: 20px;
  top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20000;
}

#home img {
  height: 50px;
  width: 50px;
  mix-blend-mode: luminosity;
}

h1 {
	font-weight: bold;
	margin: 0;
    color: #fb6b18;
	text-align: center;
}

h2 {
	text-align: center;
}

p {
	font-size: 14px;
	font-weight: bolder;
	line-height: 20px;
	letter-spacing: 0.5px;
	margin: 20px 0 30px;
}

span {
	font-size: 12px;
}

a {
	color: #333;
	font-size: 14px;
	text-decoration: none;
	margin: 15px 0;
    }
a:hover {
	color: #fb6b18;
	font-size: 14px;
	text-decoration: none;
	margin: 15px 0;
    font-weight: bold;
}

button {
	border-radius: 10px;
	border: 1px solid #f9782e;
	background-color: #f9782e;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: bold;
	padding: 12px 45px;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: transform 80ms ease-in;
}

button:hover {
	border: 1px solid #fb6b18;
	background-color: #fb6b18;
    cursor: pointer;
}

button:active {
	transform: scale(0.95);
}

button:focus {
	outline: none;
}

button.ghost {
	background-color: transparent;
	border: 1px solid #FFFFFF;
}

button.ghost:hover {
	background-color: transparent;
	border: 3px solid #FFFFFF;
    }

form {
	background-color: #FFFFFF;
	/* opacity: ; */
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 50px;
	height: 500px;
	border-radius: 0 0 10px 10px;
	text-align: center;
	
}



input {
    outline: none;
	background-color: #eee;
	border: none;
    border-radius: 10px;
	padding: 12px 15px;
	margin: 8px 0;
	width: 100%;
}

input:focus {
    border: 1.8px solid #f9782e;
  }

.container {
	background-color: #fff;
	border-radius: 10px;
  	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 
			0 10px 10px rgba(0,0,0,0.22);
	position: relative;
	overflow: hidden;
	width: 768px;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	min-height: 480px;
	height: 600px;
}

.form-container {
	position: absolute;
	top: 0;
	height: 100%;
	transition: all 0.6s ease-in-out;
}

.sign-in-container {
	left: 0;
	width: 50%;
	z-index: 2;
}

.container.right-panel-active .sign-in-container {
	transform: translateX(100%);
}

.sign-up-container {
	left: 0;
	width: 50%;
	opacity: 0;
	z-index: 1;
	height: 600px;
}

.container.right-panel-active .sign-up-container {
	transform: translateX(100%);
	opacity: 1;
	z-index: 5;
	animation: show 0.6s;
}

@keyframes show {
	0%, 49.99% {
		opacity: 0;
		z-index: 1;
	}
	
	50%, 100% {
		opacity: 1;
		z-index: 5;
	}
}

.overlay-container {
	position: absolute;
	top: 0;
	left: 50%;
	width: 50%;
	height: 100%;
	overflow: hidden;
	transition: transform 0.6s ease-in-out;
	z-index: 100;
}

.container.right-panel-active .overlay-container{
	transform: translateX(-100%);
}

.overlay {
	background-image: url("static/1.JPG");  
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0 0;
	color: #FFFFFF;
	position: relative;
	left: -100%;
	height: 100%;
	width: 200%;
  	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}

.container.right-panel-active .overlay {
  	transform: translateX(50%);
}

.overlay-panel {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 40px;
	text-align: center;
	top: 0;
	height: 100%;
	width: 50%;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}

.overlay-left {
	transform: translateX(-20%);
}

.container.right-panel-active .overlay-left {
	transform: translateX(0);
}

.overlay-right {
	right: 0;
	transform: translateX(0);
}

.container.right-panel-active .overlay-right {
	transform: translateX(20%);
}

@media (min-width: 767px) {
	.form {
	  display: none !important;
	}
}

@media (max-width: 767px) {
	.container {
		display: none !important;
	}
}

.form{
	height: 560px;
	width: 400px;
	margin-top: 25px;
	border-radius: 10px;
	/* padding: 0px 0px 15px 0px; */
	background: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	/* align-items: center; */
	/* position: relative; */
	/* background-color: rgb(1, 0, 22); */
}

@media(min-width:767px){
	form{
		background-color: #FFFFFF;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		padding: 0 50px;
		height: 100%;
		text-align: center;
	}
}

.form .button_container{
	width: 100%;
	height: 10%;
	/* background-color: #1669F2; */
	border-radius: 10px 10px 0 0 ;
}

.button_container{
	display: flex;
	flex-direction: row;
}

.button_1{
	width: 100%;
	display: flex;
	justify-content: center;
	border-radius: 10px 0 0 0;
	background-color: #fff;
}

.button_2{
	width: 100%;
	display: flex;
	justify-content: center;
	border-radius: 0 10px 0 0;
	background-color: #eee;
}

.form .form_container{
	width: 100%;
	height: 90%;
	/* background-color: aqua; */
	border-radius: 0 0 10px 10px ;
	display: flex;
    align-items: center;
    justify-content: center;
	
}
/* LOGIN FORM */

	.form .login_form{
		    
			/* height: 100%; */
			width: 400px;
			z-index: 5;
			position: absolute;
			
	}

	.form .login_form input{
	outline: none;
	background-color: #eee;
	border: none;
    border-radius: 10px;
	padding: 12px 15px;
	width: 100%;
	}

	.form .login_form input:focus {
		border: 1.8px solid #f9782e;
	  }

	hr{
		height: 5px;
		background-color: black;
		width: 320px;
		margin: 15px -20px 5px -20px;
	}

	.tag{
		text-align: center;
		font-size: 20px;
		margin: 7px 0px 7px 0px;

		/* margin: auto; */
	}
	.icons{
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.fa {
		padding: 20px;
		border-radius: 100%;
		font-size: 20px;
		text-align: center;
		text-decoration: none;
		margin: 2px 2px;
	}
	.fa-google {
		background: #dd4b39;
		color: white;
	}

	.submit{
		width: 70px;
		border: none;
		padding: 7px;
		border-radius: 5px;
		background-color: cadetblue;
		outline: none;
		cursor: pointer;
	}
	/* Login info end */


	/* Sign Up form */

.form .SignUp_form{
	/* display: flex;
	flex-direction: column; */
	/* height: 100%; */
	width: 400px;
	
	/* padding-left: 30px;
	padding-right: 30px; */
	z-index: 2;
	position: absolute;
}

.form .SignUp_form input{
	outline: none;
	background-color: #eee;
	border: none;
    border-radius: 10px;
	padding: 12px 15px;	
	width: 100%;
	/* margin-bottom: 0px; */
	
}

.form .SignUp_form input:focus {
    border: 1.8px solid #f9782e;
}

.google-btn {
	width: 184px;
	height: 42px;
	background-color: #4285f4;
	border-radius: 2px;
	box-shadow: 0 3px 4px 0 rgba(0,0,0,.25);
	cursor: pointer;
}

.google-btn:hover {
	box-shadow: 0 0 6px #4285f4;
}

.google-btn:active {
	background: #1669F2;
}

.google-icon-wrapper {
	position: absolute;
	margin-top: 1px;
	margin-left: 1px;
	width: 40px;
	height: 40px;
	border-radius: 2px;
	background-color: #fff;
}

.google-icon {
	position: absolute;
	margin: 11px !important;
	left: 0;
	top: 0;
	width: 18px;
	height: 18px;
}

.btn-text {
	float: right;
	color: #fff;
	font-size: 14px;
	letter-spacing: 0.2px;
	font-family: "Roboto";
}

/* Snackbar */

#snackbar {
	visibility: visible;
	min-width: 250px;
	margin-left: -125px;
	background-color: rgb(255, 62, 62);
	color: #fff;
	text-align: center;
	border-radius: 5px;
	padding: 16px;
	position: fixed;
	z-index: 10000;
	left: 50%;
	top: 10px;
	font-size: 17px;
}
  
/* #snackbar.show {
	visibility: visible;
	-webkit-animation: fadein 0.5s, fadeout 0.5s 4.5s;
	animation: fadein 0.5s, fadeout 0.5s 4.5s;
} */
  
@-webkit-keyframes fadein {
	from {top: 0; opacity: 0;} 
	to {top: 30px; opacity: 1;}
}
  
@keyframes fadein {
	from {top: 0; opacity: 0;}
	to {top: 30px; opacity: 1;}
}
  
@-webkit-keyframes fadeout {
	from {top: 30px; opacity: 1;} 
	to {top: 0; opacity: 0;}
}
  
@keyframes fadeout {
	from {top: 30px; opacity: 1;}
	to {top: 0; opacity: 0;}
}

@media(max-width:444px){
	.form{
		width: 90%;
	}

	.form .login_form{
		width: 300px;
	}

	.form .SignUp_form{
		width: 300px;
	}
}

@media(max-width:360px){
	form{
		padding: 0 25px;
	}
	.form .login_form{
		width: 275px;
	}

	.form .SignUp_form{
		width: 275px;
	}
}

@media(max-width:320px){
	form{
		padding: 0 20px;
	}
	.form .login_form{
		width: 245px;
	}

	.form .SignUp_form{
		width: 245px;
	}
}