*{
	margin:0;
	padding:0;
	box-sizing:border-box;
	font-family:tahoma;
}
body {
	background:#f7f7f7;
	display:flex;
	justify-content:center;
	align-items:center;
	height:100vh;
}
.container {
	width:900px;
	height:560px;
	background:#fff;
	display:flex;
	border-radius:20px;
	overflow:hidden;
	box-shadow:0 15px 40px rgba(0,0,0,.15);
}
.left {
	width:45%;
	background:#0693E3;
	color:white;
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
	padding:40px;
	text-align:center;
}
.left h1 {
	font-size:38px;
	margin-bottom:20px;
	font-family: vazir;
}
.left p	{
	line-height:35px;
	font-size:17px;
	font-family: dana;
}
.right {
	width:55%;
	display:flex;
	justify-content:center;
	align-items:center;
	position:relative;
	padding:30px;
}
form {
	width:100%;
	display:none;
	animation:fade .4s;
}
form.active {
	display:block;
}
h2 {
	text-align:center;
	margin-bottom:30px;
	color:#0693E3;
	font-family: vazir;
}
.inputBox {
	background:#f7f7f7;
	display:flex;
	align-items:center;
	padding:12px;
	border-radius:12px;
	margin-bottom:15px;
}
.inputBox i {
	color:#0693E3;
	margin-left:10px;
}
.inputBox input {
	width:100%;
	border:none;
	outline:none;
	background:none;
	font-size:15px;
}
.inputBox span {
	cursor:pointer;
	color:#777;
	font-family: dana;
}
button {
	width:100%;
	padding:14px;
	border:none;
	background:#0693E3;
	color:white;
	font-size:16px;
	border-radius:12px;
	cursor:pointer;
	transition:.3s;
	font-family: dana;
}
button:hover {
	background:#0478bb;
	transform:scale(1.02);
}
p {
	margin-top:20px;
	text-align:center;
	font-family: dana;
}
a {
	text-decoration:none;
	color:#0693E3;
	font-weight:bold;
}
small {
	display:block;
	margin-bottom:15px;
	text-align:center;
	font-size:14px;
}
@keyframes fade {
	from {
		opacity:0;
		transform:translateY(20px);
	}
	to {
		opacity:1;
		transform:translateY(0);
	}
}
@media(max-width:850px) {
	body {
		min-height:100dvh;
		display:flex;
		justify-content:center;
		align-items:center;
		padding:20px;
	}
	.container {
		width:100%;
		max-width:420px;
		margin:0 15px;
		height:auto;
		flex-direction:column;
		border-radius:20px;
	}
	.left,
	.right {
		width:100%;
		padding:30px 20px;
	}
}

input {
    text-align:right;
    direction:rtl;
}