body {
	background: #F1F3F4 !important;
}

.center-area {
	width: 375px;
	min-height: 300px;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -30%);
	position: absolute;
	text-align: center;
}

.center-area.signup {
	width: 425px;
	height: 500px;
}

.center-area.signup .box-auth {
	height: 430px;
	position: relative;
}

.center-area.signup .box-auth .box-body {
	padding: 20px 30px;
}

.center-area .box-auth .box-footer {
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	padding: 30px;
}

.center-area img {
	/*max-width: 15rem;*/
	height: 5rem;
    margin-left: -28px;
}

.center-area .logo {
	height: 50px;
	width: auto;
}

.box-auth {
	margin-top: 20px;
	min-height: 350px;
	-webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.15);
	background: #FFFFFF;
}

.box-auth .box-header {
	padding: 25px;
	text-align: center;
	background: #F9F9F9;
}

.box-auth .box-header h1 {
	font-size: 17px;
	font-family: 'Open Sans SemiBold', sans-serif;
}

.box-auth .box-header p {
	font-size: 15px;
	font-family: 'Open Sans SemiBold', sans-serif;
	margin-bottom: 0;
}

.box-auth .box-header i {
	position: absolute;
	left: 30px;
	top: 30px;
	cursor: pointer;
}

.box-auth .box-header i:hover {
	color: #2A7EA3;
}

.box-auth .box-body {
	padding: 25px 30px 30px 30px;
}

.box-auth .box-body h1 {
	text-align: center;
	font-family: 'Open Sans Light', sans-serif;
	margin-bottom: 20px;
}

.box-auth .box-body p {
	text-align: center;
}

.box-auth .btn {
	height: 50px;
	font-family: 'Open Sans Bold', sans-serif;
	font-size: 15px;
	padding-top: 12px;
}

.btn-block {
	position: relative;
}

.btn-block i {
	position: absolute;
	right: 0;
	top: 15px;
}

.auth-success {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #298000;
}

.auth-success i {
	font-size: 60px;
}

.auth-success p {
	margin-top: 20px;
}

/*FORM INPUT*/
.group {
	position: relative;
	margin-bottom: 25px;
}

input {
	font-size: 13px;
	padding: 10px 10px 10px 5px;
	display: block;
	width: 100%;
	border: none;
	border-bottom: 1px solid #AAAAAA;
}

input:focus {
	outline: none;
}

.group label {
	position: absolute;
	pointer-events: none;
	left: 5px;
	top: 10px;
	transition: 0.2s ease all;
	-moz-transition: 0.2s ease all;
	-webkit-transition: 0.2s ease all;
}

input:focus~label,
input:valid~label {
	top: -20px;
	color: #2A7EA3;
	font-size: 11px;
}

.bar {
	position: relative;
	display: block;
	width: 100%;
}

.bar:before,
.bar:after {
	content: '';
	height: 2px;
	width: 0;
	bottom: 0px;
	position: absolute;
	background: #2A7EA3;
	transition: 0.2s ease all;
	-moz-transition: 0.2s ease all;
	-webkit-transition: 0.2s ease all;
}

.bar:before {
	left: 50%;
}

.bar:after {
	right: 50%;
}

input:focus~.bar:before,
input:focus~.bar:after {
	width: 50%;
}

.highlight {
	position: absolute;
	height: 60%;
	width: 100px;
	top: 25%;
	left: 0;
	pointer-events: none;
	opacity: 0.3;
}

input:focus~.highlight {
	-webkit-animation: inputHighlighter 0.5s ease;
	-moz-animation: inputHighlighter 0.5s ease;
	animation: inputHighlighter 0.5s ease;
}

#image-preview {
	margin: 20px auto;
	background-size: cover !important;
	background-repeat: no-repeat !important;
}

@media only screen and (max-width: 768px) {
	.center-area {
		margin: 0 auto;
		transform: none;
		height: auto;
		position: relative;
		top: 0;
		left: 0;
		width: 90%;
		padding: 15px;
		max-width: 375px;
	}

	body.register {
		overflow: hidden;
		background: white !important;
	}

	body .center-area2 {
		width: 100vw;
		height: 100vh;
		transform: unset;
		margin: 0;
		position: relative;
		left: 0;
		top: 0;
		display: flex;
		justify-content: center;
		background: white;
		min-width: unset;
		max-width: unset;
		overflow-x: hidden;
		overflow-y: auto;
	}

	body .center-area2>.row> :first-child {
		display: none;
	}

	body .box-auth2 {
		box-shadow: none;
		width: 100vw;
	}

	.fix-mobile> :first-child {
		padding-right: 15px !important;
	}

	.fix-mobile> :last-child {
		margin-left: 10px;
		margin-bottom: 15px;
	}
}

body.register {
	background-image: url('../images/background/bg1.jpg') !important;
	background-size: cover !important;
}

.bg-overlay {
	background-color: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.center-area2 {
	width: 900px;
	top: 50%;
	left: 50%;
	min-height: 300px;
	transform: translate(-50%, -50%);
	position: absolute;
	z-index: 999;
	color: #FFFFFF;
}

.box-auth2 {
	margin-top: 20px;
	min-height: 350px;
	-webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
	background: #FFFFFF;
	border-radius: 5px;
	padding: 30px 15px 15px;
	color: #111111;
}

.box-auth2 h1 {
	font-size: 19px;
}

.box-auth2 .form-control {
	border-radius: 2px;
	padding: 10px;
}

.box-auth2 .form-control.with-icon {
	padding: 10px 10px 10px 35px;
}

.box-auth2 .form-group {
	position: relative;
	margin-bottom: 20px;
}

.box-auth2 .form-group i.icon-label {
	position: absolute;
	left: 10px;
	top: 9px;
}

.box-auth2 .form-group i.view-password,
.box-auth2 .form-group i.hide-password {
	position: absolute;
	right: 10px;
	top: 9px;
	cursor: pointer;
}

.box-auth2 .form-group i.view-password::before {
	content: "\f06e";
}

.box-auth2 .form-group i.hide-password::before {
	content: "\f070";
}

.box-auth2 .btn {
	min-width: 200px;
	font-size: 15px;
	font-family: Open Sans SemiBold, sans-serif;
}

.box-auth2 .grey {
	color: #999999;
}

.box-auth2 .icon-valid {
	position: absolute;
	right: -20px;
	top: 15px;
	color: green;
}

.box-auth2 .success-notification i {
	font-size: 50px;
	color: green;
}

.box-auth2 .success-notification h1 {
	color: green;
}

.box-auth2 .form-group .notif-input {
	position: absolute;
	bottom: -15px;
	left: 0px;
	font-size: 11px;
}