/*
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display-swap');
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

*{
margin: 0;
padding: 0;
box-sizing: border-box;
/*font-family: 'Open Sans', sans-serif;*/
font-family:"Poppins",sans-serif;
}


body{
	min-height: 100vh;
	display:flex;
	align-items: center;
	justify-content: center;
	background:#fff;
	padding: 30px;
}

a {
	text-decoration: none;
    color: inherit;
    font-weight: 400;
}

.container {
	position:relative;
	max-width: 850px;
	width: 100%;
	background: #fff;
	padding: 40px 30px;
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	perspective: 2700px;
}

.container .bg-cover {
	position:absolute;
	height: 100%;
	width: 50%;
	top: 0;
	left: 50%;
	z-index: 98;
	transition: all 1s ease;
	transform-origin: left;
	transform-style: preserve-3d;
}

.container .bg-cover::before{
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: 100;
}

.container .bg-cover::after{
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	background: rgba(0,0,0,0.2);
	z-index: 100;
	transform: rotateY(180deg);
}

.container #flip:checked ~ .bg-cover {
	transform: rotateY(-180deg);
	/*backface-visibility: hidden;*/
}

.container .bg-cover img {
	position:absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 12;
	backface-visibility: hidden;
}

.container .bg-cover .back .backimg{
	transform: rotateY(180deg);
}

.container .bg-cover .text {
	position:absolute;
	z-index:111;
	height:100%;
	width:100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.bg-cover .text .text-1,
.bg-cover .text .text-2 {
 font-size: 26px;
 font-weight: 600;
 color: #fff;
 text-align:center;
 backface-visibility: hidden !important;
}


.bg-cover .back .text .text-1,
.bg-cover .back .text .text-2 {
 transform: rotateY(180deg);
}

.bg-cover .text .text-2 {
	font-size: 15px;
	font-weight: 500;
}

.container form {
	height: 100%;
	width:100%;
	background:#fff;
}

.container .form-content {
	display:flex;
	align-items: center;
	justify-content: space-between;
}


.form-content .login-form,
.form-content .signup-form {
	width: calc(100% / 2 - 25px);
}

form .form-content .title {
	font-size: 24px;
	font-weight: 500;
	color: #333;
	position:relative;
} 

form .form-content .title::before {
	content:'';
	position:absolute;
	height:3px;
	width: 25px;
	background: #ff4d29;
	left:0;
	bottom:0;
}

form .signup-form .title::before {
	width:20px;
}

form .form-content .input-boxes {
	margin-top: 30px;
}


form .form-content .input-box {
	display:flex;
	align-items: center;
	height: 50px;
	width: 100%;
	margin: 10px 0;
	position:relative;
}

form .form-content .input-box input {
	height: 100%;
	width: 100%; 
	outline: none;
	border: none;
	padding: 0 30px;
	font-size: 16px;
	font-weight: 500;
	border-bottom: 2px solid rgba(0,0,0,0.2);
}

form .form-content .input-box input:focus,
form .form-content .input-box input:valid{
	border-color: #ff4d29;
}

form .form-content .input-box .svg-inline--fa {
	position:absolute;
	color: #ff4d29;
	font-size: 17px;
}

form .form-content .text {
	font-size:14px;
	font-weight:500;
	color: #333;
}

form .form-content .text a{
	text-decoration:none;
}

form .form-content .text a:hover{
	text-decoration:underline;
}

form .form-content .button {
	color: #fff;
	margin-top: 40px;
}


form .form-content .button input {
	color: #fff;
	background: #ff4d29;
	border-radius: 6px;
	padding: 0;
	cursor:pointer;
	transition: all 0.4s ease;
}


form .form-content .button input:hover {
	background: #5b13b9;
}


form .form-content label {
	color:#5b13b9;
	cursor:pointer; 
}

form .form-content label:hover {
	color:#5b13b9;
	text-decoration: underline;
}


form .form-content .login-text,
form .form-content .signup-text {
text-align: center;
margin-top: 25px;
}

.container #flip {
	display: none;
}

@media (max-width:730px){
	.container .bg-cover {
		display:none;
	}

	.form-content .login-form,
	.form-content .signup-form {
		width: 100%;
	}

	.form-content .signup-form {
		display: none;
	}
	
	.container #flip:checked ~ form .signup-form {
		display:block;
	}
	
	.container #flip:checked ~ form .login-form {
		display:none;
	}
}


