body{
	box-sizing: border-box;
	line-height: 1.9em;
	min-height: 100vh;
	font-family: 'Cairo';
	background-image: url("images/bg-pattern-light.svg");
	background-position: center center;
	background-size: cover;
}
.main-login-page{
  display: flex;
  height: 100vh;
  align-items: center;
	text-align: center;
}
.login-box{
	position: relative;
	min-width: 400px;
	background-color: #fff;
	border-radius: 3px;
	box-shadow: 0px 0px 60px 0px rgba( 0,0,0,0.1 );
	min-height: 150px;
	margin: 0px auto;
	overflow: hidden;
}
.login-box:before, .login-box:after
{
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 15px;
  left: 0px;
  width: 50%;
  top: 80%;
  max-width:300px;
  background: #000;
  -webkit-box-shadow: 0 30px 20px rgba( 0,0,0,0.1 );
  -moz-box-shadow: 0 30px 20px rgba( 0,0,0,0.1 );
  box-shadow: 0 30px 20px rgba( 0,0,0,0.1 );
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
.login-box:after
{
  -webkit-transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  -o-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
  right: 0px;
  left: auto;
}
.login-box > .header-login{
	display: block;
	font-size: 18pt;
	margin-bottom: 10px;
	position: relative;
	padding: 3px 0px;
	color: #fff ;
	background-color: #727cf5;
}
.login-box > .header-login img{
	max-height: 60px;
	width: auto;
}
.login-box > form > h2{
	display: block;
	font-size: 18pt;
	position: relative;
	padding-bottom: 15px;
	color: #777777 ;
	margin-bottom: 10px;
	padding-bottom: 0px;
}
.login-box > form > p{
	display: block;
	font-size: 10pt;
	margin-bottom: 10px;
	position: relative;
	padding-bottom: 15px;
	color: #c4c4c4 ;
}
input{
	box-shadow: 0px !important;
	outline: none !important ;
}
.form-cc-row{
	margin-bottom: 10px;
	text-align: center;
}
.form-cc-row > input{
	display: block;
	width: 80%;
	padding: 5px 10px;
	height: 45px;
	margin: 0px auto;
	text-align: center;
	border: 0px;
	border-bottom: 1px rgba( 0,0,0,0.1 ) solid;
	box-shadow: 0px 1px 4px rgba( 0,0,0,0.05 );
	border-radius: 30px;
}
.form-cc-row > input:first-child{
	margin-bottom: 10px;
}
.form-cc-row-button{
	margin: 30px 0px;
	text-align: center;
}
.login-check{
	display: inline-block;
	font-weight: 400;
	text-align: center;
	vertical-align: middle;
	border: 1px solid transparent;
	padding: .45rem 1.5rem;
	font-size: .9rem;
	line-height: 1.5;
	border-radius: 5.35rem;
	display: inline-block;
	box-shadow: 0 2px 6px 0 rgba(114,124,245,.5);
	color: #fff;
	background-color: #727cf5;
	border-color: #727cf5;
}
.login-check:hover{
	color: #fff;
	background-color: #4e5bf2;
	border-color: #4250f2;
}
.login-language{
	position: absolute;
	right: 0px;
	top: 90px;
	z-index: 100;
}
.login-language a{
	display: block;
	border-radius: 3px 0px 0px 3px;
	background-color: #e2e2e2;
	color: #7f7f7f ;
	width: 30px;
	text-align: center;
	cursor: pointer;
	font-size: 9pt;
	margin: 3px 0px;
}
.login-language a.active{
	background-color: #727cf5;
	color: #fff;
}
.login-language a img{
	width: 10px;
	height: 10px;
	display: inline-block;
	vertical-align: middle;
}






@media all and (max-width: 600px) {
	.login-box{
		min-width: 300px;
	}
}






































