body{
	/* background-color: #c9d6ff;
	background: linear-gradient(to right, #e2e2e2,#c9d6ff);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 100vh;
	font-family: 'Montserrat' sans-serif; */
}

.contenu{
	display: flex;
	flex-direction: column;
	margin: auto;
	padding: 0 10px;
	min-height: 100vh;
	align-items: center;
	justify-content: center;
}

.container{
	background-color: #fff;
	border-radius: 30px;
	box-shadow: 0 15px rgba(0,0,0, 0.35);
	position: relative;
	overflow: hidden;
	width: 768px;
	max-width: 100%;
	min-height: 480px;/* 
	z-index: -1; */
}

.container button{
	background-color: #008000;
    color: #fff;
    font-size: 12px;
    padding: 10px 45px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.container button.hidden{
	background-color: transparent;
	border-color: #fff;
}

.container form{
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 45px;
	height: 100%;
}

.container form img .bus-toase-login-interface{
	width: 100%;
}

.bus-toase-login-interface{
	width: 50%;
}

.login-interface-img{
	display: none;
}

.container input{
	background-color: #eee;
	border: none;
	margin: 8px 0;
	padding: 10px 15px;
	font-size: 13px;
	border-radius: 8px;
	width: 100%;
	outline: none;
}

.form-container{
	position: absolute;
	top: 0;
	height: 100%;
	transition: all 0.6s ease-in-out;
}

.sign-in{
	left: 0;
	width: 50%;
	z-index: 2;
}

.sign-up{
	left: 0;
	width: 50%;
	margin-top: 210px;
	margin-left: 350px;
	z-index: 1;
}

.toggle-container{
	position: absolute;
	top: 0;
	left: 50%;
	width: 50%;
	height: 100%;
	overflow: hidden;
	transition: all 0.6s ease-in-out;
	border-radius: 150px 0 0 100px;
	z-index: 1000;
}

.toggle{
	background: radial-gradient(#fff,#008000);
	color: #fff;
	position: relative;
	left: -100%;
	height: 100%;
	width: 200%;
	animation: slideRight 0.6s forwards;
}

.toggle img{

}

.toggle button{
	background-color: #ff523b;
    color: #fff;
    font-size: 12px;
    padding: 10px 45px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.toggle .icons{

}

/*.toggle-container .toggle .toase{
	margin-top: 20px;
	margin-left: 450px;
    width="175px" style=" margin-left: 450px;"
}*/


@keyframes{
	0%{
		left: -100%;
	}
	100%{
		left: 0;
	}
}



/*-----footer-------*/

/*.footer{
	background: #000;
	color: #8a8a8a;
	font-size: 14px;
	padding: 60px 0 20px;
}



.footer p{
	color: #8a8a8a;
}

.footer h3{
	color: #fff;
	margin-bottom: 20px;
}

.footer-col-1, .footer-col-2, .footer-col-3, .footer-col-4{
	min-width: 250px;
	margin-bottom: 20px;
}

.footer-col-1{
	flex-basis: 30px;
}

.footer-col-2{
	flex: 1;
	text-align: center;
}

.footer-col-2 img{
	width: 180px;
	margin-bottom: 20px;
}

.footer-col-3, .footer-col-4{
	flex-basis: 12%;
	text-align: center;
}

ul{
	list-style-type: none;
}
 
.app-logo{
	margin-top: 20px;
}

.app-logo img{
	width: 140px;
}

.footer hr{
	border: none;
	background: #b5b5b5;
	height: 1px;
	margin: 20px 0;
}

.copyright{
	text-align: center;
}

.menu-icon{
	width: 28px;
	margin-left: 20px;
	display: none;
}*/

/*------- media query for menu ------*/
@media only screen and (max-width: 800px){

	nav ul{
		position: absolute;
		top: 70px;
		left: 0;
		background: #333;
		width: 100%;
		overflow: hidden;
		transition: max-height 0.5s;
		z-index: 20;
	}

	nav ul li{
		display: block;
		margin-right: 50px;
		margin-top: 10px;
		margin-bottom: 10px;
	}

	nav ul li a{
		color: #fff;
	}

	.menu-icon{
		display: block;
		cursor: pointer;
	}
}

@media only screen and (max-width: 800px){
	.contenu{
	    margin: auto 0;
	    min-height: 70vh;
    }
    .container{
	  min-height: 100vw;
	  width: 80vw;
	}
	.container form{
		margin-top: 20px;
		width: 80vw;
	}
	.toggle-container{
		display: none;
	}
	.bus-toase-login-interface{
		display: none;
	}
	.login-interface-img{
		display: revert;
		width: 100%;
	}
	.btn{
		margin-bottom: 30px;
	}
}