.loginbg{
	padding: 40px 0;
	position: relative;
	display: block;
}
.loginbg .innerbg{
	display: block;
	width: 100%;
	background: #F8F9FA;
	border-radius: 4px;
	border: 1px solid #ddd;
	box-sizing: border-box;
	padding: 2rem;
}
.loginbg  .maintitle{
	display: block;
	font-size: 1.3rem;
	font-weight: 600;
	color: #000;
	letter-spacing: -0.4px;
	margin-bottom: 1rem;
}
.loginbg  p{
	display: block;
	font-size: 0.85rem;
	line-height: 1.4;
	color: #999999;
	margin-bottom: 0.5rem;;
}
.loginbg  p a{
	color: #B82C3A;
}
.input-wrapper{
	display: block;
	width: 100%;
	position: relative;
	margin-bottom: 1.0rem;
}
.loginbg  input[type='text'],
.loginbg  input[type='password']{
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 0 15px;
	border:1px solid #efefef;
	background: #fff;
	border-radius: 4px;
	color: #000;
	line-height: 48px;
	font-size: 0.95rem;
	letter-spacing: -0.4px;
}
.loginbg  input[type='submit']{
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 0 15px;
	background: #000;
	line-height: 52px;
	color: #fff;
	font-size: 1rem;
	letter-spacing: -0.4px;
	text-align: center;
	border-radius: 4px;
	border: 0;
	text-shadow: none;
	margin-bottom: 1rem;
}
.inputicon{
	position: absolute;
	font-size: 1rem;
	color: #999;
	line-height: 48px;
	top: 0;
	right: 15px;
}

.form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
}

.form-group label {
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
  font-size: 0.85rem;
}

/* Unchecked state */
.form-group label:before {
  content: '';
  -webkit-appearance: none;
  background-color: #fff; /* White background when unchecked */
  border: 1px solid #000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 8px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
}

/* Checked state – background becomes red */
.form-group input:checked + label:before {
  background-color: #fff;
}

/* Checked state – white checkmark */
.form-group input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  left: 7px;
  width: 6px;
  height: 12px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.error{
	display: block;
	font-size: 0.8rem;
	color: #B82C3A;
}