/*LOGIN PAGE*/
.login-bg {
	background: url(../img/login-register.jpg);
	position: fixed;
	background-size: cover;
	width: 100%;
	height: 100%;
}

.login-bx {
	background: #fff;
	position: absolute;
	height: 100%;
	right: 0px;
	width: 400px;
}


.login-inner {
	    padding: 25px;
    margin-bottom: 30px;
}

.form-control {
	outline: none;
	border-radius: 0;
	box-shadow: none!important;
}

.logo-sec {
	margin-bottom: 50px;
}

.container-checkbox {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-right: 10px;
      padding-left: 25px;
}

/* Hide the browser's default checkbox */
.container-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 17px;
  width: 17px;
  background-color: #fff;
    border: 1px solid rgba(120,130,140,.3);

}


/* When the checkbox is checked, add a blue background */
.container-checkbox input:checked ~ .checkmark {
  background-color: #2196F3;
      border: 1px solid #2196F3;

}

.container-checkbox b {
	font-weight: normal;
	position: relative;
	top: -2px;	
	font-size: 13px;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container-checkbox .checkmark:after {
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

a.btn-link {
	color: #000;
	text-decoration: none!important;
}



.btn-primary {
	    background-color: #2cabe3;
    border: 1px solid #2cabe3;
}

.loginbtn {
	display: block;
	width: 100%;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 15px;
}

.he-area {
	text-align: center;
		margin-bottom: 30px;
		font-weight: bold;
		font-size: 18px;
}

label.error {
	color: red;
	margin-top: 10px;
	font-size: 12px;
}


.back-login {
	color: #000;
}


p.error {
    color: red;
    margin-top: 0px;
    font-size: 12px;
}


.bg-title {
  background: #f1f2f7;
    border-bottom: 1px solid rgba(120, 130, 140, 0.13);
}