/* fonts */

@font-face {
  font-family: 'Open Sans Hebrew Regular';
  src: url('/css/fonts/opensanshebrew-regular-webfont.eot');
  src: url('/css/fonts/opensanshebrew-regular-webfont.eot?#iefix') format('embedded-opentype'), url('/css/fonts/opensanshebrew-regular-webfont.woff') format('woff'), url('/css/fonts/opensanshebrew-regular-webfont.ttf') format('truetype'), url('/css/fonts/opensanshebrew-regular-webfont.svg#open_sans_hebrewregular') format('svg');
  font-weight: 400;
  font-style: normal;
}

/* fonts end */

/* general */

body {
	font-family: 'Open Sans Hebrew Regular';
	color: #363636;
}

/* general end */

/* left part */

.left-part {
	height: 100vh;
	padding: 8% 3% 0;
}

.left-part .logo {
	margin-bottom: 45px;
}

.left-part .title {
	font-size: 19px;
	margin-bottom: 25px;
}

.left-part .title span {
	font-size: 30px;
	color: #9a3569;
	margin-right: 5px;
}

.left-part .title a {
	color: #0072bc;
	text-decoration: underline;
}

/* form */

form .form-control {
	font-size: 21px;
	height: 46px;
	border-radius: 0;
	border: 1px solid #acacac;
}

form .form-control:focus {
    border-color: #31a2b0;
}

form p.warning-message {
	color: #ed1c24;
}

form .btn-box {
	text-align: center;
	width: 80%;
	margin: 25px auto 0;
}.form-horizontal .form-group{	margin-right: 0px;    margin-left: 0px;}

form input.btn, form button.btn{
	font-size: 21px;
	color: #fff;
	width: 100%;
	height: 48px;
	background-color: #9a3569;
	display: block;
	border-radius: 5px;
	padding: 2px 12px;
	
	-webkit-transition: ease-out .5s;
	-moz-transition: ease-out .5s;
	-ms-transition: ease-out .5s;
	-o-transition: ease-out .5s;
	transition: ease-out .5s;
	
	-webkit-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.05);
	-moz-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.05);
	box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.05);
}
  
form input.btn:hover, form button.btn:hover{
	color: #fff;
	background-color: #7f2c57;
}

form label {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin-right: 5px;
}

form input[type=checkbox] {
	margin-top: 3px;
}

form .btn-box a {
	color: #0072bc;
	text-decoration: underline;
	margin-left: 5px;
	display: inline-block;
}

/* form end */

.bottom-links {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
}

.bottom-links a {
	color: #363636;
	text-decoration: underline;
}

/* left part end */

/* right part */
.alert-success{	font-size: 16px;}
.right-part {
	background: url(/css/images/login/bg.jpg) center;
	-webkit-background-size: cover;
	background-size: cover;
	height: 100vh;	cursor:pointer;
}

/* right part end */

/* media */

@media (max-width: 991px) {
	.left-part {
		max-width: 400px;
		margin: 0 auto;
	}
}

@media (max-width: 767px) {
	.left-part .title {
		font-size: 17px;
		margin-bottom: 25px;
	}
	form .btn-box .checkbox label, form .btn-box .checkbox a {
		font-size: 12px;
	}
	form input[type=checkbox] {
		margin-top: 0;
	}

}

/* media end */