/*Registration and Login Page v2
------------------------------------*/
body { 
	background: #f5f5f5;
}
.loginBG{
	background:url(../../../images/hrm-bg-1.jpg) no-repeat 0 0;
	background-size:cover;
}
.loginBG::after{
	content:'';
    position: absolute;
    right:0;
    left:0;
    top:0;
    bottom:0;
    margin:auto;
    height:100%;
    width:100%;
    background: rgba(0,0,0,0.6);
}
.loginRow{
	display: flex;
	height:100%;

}
.reg-block {
	/*width: 100%;	
	margin: 10% auto;
	
	box-shadow: 0 0 15px #ccc;
	border-radius: 20p*/x!important;
	overflow:hidden;

	border-radius: 20px!important;
	background: #fff;
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin: auto;
	box-shadow: 0 0 100px #000;
	max-width: 1000px;
	max-height:530px;
	z-index: 2;
}

.reg-block h2,
.reg-block p,
.reg-block p a {
	color: #777;
}

.reg-block-header h2 {
	font-size: 28px;
}

.reg-block p a {
	text-decoration: underline;
}
.reg-block p a:hover {
	text-decoration: none;
}

/*Forms*/
.reg-block .input-group-addon {
	color: #fff;
	background: #f44336;
    min-width: 45px;
    font-size: 18px;
}
.adminLogo{
	height:25px;
}

.reg-block .form-control:focus {
   box-shadow: none;
   border-color: #999;
}

.reg-block .checkbox { 
	color: #555;
	margin-bottom: 20px;
	font-weight: normal;
}

/*Reg Header*/
.reg-block-header {
	padding: 5px 0px 0px 0px;
	margin-bottom: 20px;
}
.loginImgBG{
	background:#fff7f6;
	padding:10px 50px;
	/*max-width:100%;*/
	display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 2px #999;
}
.loginImgBG img{
	max-width:100%;
}
.reg-block-header h2 {
	text-align: center;
	margin-bottom: 15px;
}

.reg-block-header p {
	text-align: center;
}
.loginForm{
	padding:20px 30px 20px 50px;
}
/*For Mobile Devices*/
@media (max-width: 767px) { 
	.loginBG{
		background: #fff;
	}
	.reg-block {
		width: 100%;
		margin: auto;
		box-shadow: none;
	}
	.loginBG::after{
		display: none;
	}
	.loginImgBG{
		display:  none;
	}
	.loginRow {
	    display: block;
	    height: 100%;
	    max-width: 100%;
	}
}
.toggle-password{
  position:absolute;
  right:10px;
  top:12px;
  z-index: 99;
  color:#999;
  cursor: pointer;
  font-size: 16px;
}
/* Custom radio buttons */
.radio, .checkbox {
  margin: 0 0 15px 0; 
}
.radioGroup input[disabled="disabled"] + label {
  opacity: 0.5!important;
}
.radioGroup input[type="radio"] + label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  margin-right: 15px;
  font-size: 13px;
  line-height: 14px;
}
.radioGroup input[type="radio"] + label:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 14px;
  position: absolute;
  top: -3px;
  left: 0;
  border: 1px solid #aaa;
  background-color: #fff;
  border-radius: 50%;
}
.radioGroup input[type="radio"] {
  display: none !important;
  *display: inline;
}
.radioGroup input[type="radio"]:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
}
/* Custom checkbox */
.checkboxGroup input[type="checkbox"] + label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 24px;
  margin-right: 15px;
  font-size: 13px;
}

.checkboxGroup input[type="checkbox"] + label:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 7px;
  position: absolute;
  top: 0px;
  left: 0;
  border: 1px solid #aaa;
  background-color: #fff;
  border-radius: 5px;
}
.checkboxGroup input[type="checkbox"] {
  display: none !important;
  *display: inline;
}

.checkboxGroup input[type="checkbox"]:checked + label:after {
  content: "✔";
  font-size: 14px;
  line-height: 20px;
  color: #333;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  text-align: center;
}

.checkboxGroup input[disabled] +label:after {
	color:#999!important;
}
.checkboxGroup input[disabled] +label:before {
  background-color: #ddd;
  border-radius: 5px;
}