/*//////////////////////////////////////////////////////////////////
[ FONT ]*/
@font-face {
	font-family: Poppins-Regular;
	src: url('../fonts/poppins/Poppins-Regular.ttf');
}

@font-face {
	font-family: Poppins-Medium;
	src: url('../fonts/poppins/Poppins-Medium.ttf');
}

@font-face {
	font-family: Poppins-Bold;
	src: url('../fonts/poppins/Poppins-Bold.ttf');
}

/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/
* {
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box; /* Safari / Chrome 10 */
	-moz-box-sizing: border-box; /* Mozilla Firefox */
	box-sizing: border-box; /* W3C Markup, IE10+ */
}

body, html {
	height: 100%;
	font-family: Poppins-Regular, sans-serif;
}

input {
	outline: none;
	border: none;
}

/*//////////////////////////////////////////////////////////////////
[ login ]*/
.limiter {
	width: 100%;
	margin: 0 auto;
	display: flex;
}

.container-login {
	width: 100%;
	min-height: 100vh;
	display: -webkit-box; /* Safari / Chrome 10 */
	display: -webkit-flex; /* Safari / Chrome 10 */
	display: -moz-box; /* Mozilla Firefox */
	display: -moz-flex; /* Mozilla Firefox */
	display: -ms-flexbox; /* IE10 Consumer Preview */
	display: -o-flex; /* Opera */
	display: flex; /* W3C Markup, IE11+ */
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 15px;
	background: #fff;
	background-repeat: no-repeat;
	background-size: cover;
}

.wrap-login {
	width: 440px;
	border-radius: 10px;
	overflow: hidden;
	padding: 44px 40px 33px;
	background: rgba(220, 220, 220, 0.85);
	box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.7);
}

.img-fluid {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	display: block;
	padding-bottom: 26px;
}

.login-title {
	display: block;
	font-family: Poppins-Medium;
	font-size: 15px;
	font-weight: normal;
	color: #4b4e51;
	line-height: 1.2;
	text-align: center;
	padding-bottom: 26px;
}

.login-title .name {
	font-family: Poppins-Bold;
	font-size: 30px;
	padding-top: 10px;
}

.hidden {
	display: none !important;
}

/*------------------------------------------------------------------
[ Login message ]*/
.container-login-msg {
	padding-bottom: 40px;
}

.login-msg {
	position: relative;
	bottom: 50%;
	left: 0;
	width: 100%;
	height: 30%;
	color: #4b4e51;
}

.alert-validate {
	border-left: 4px solid #ffff00;
	border-radius: 4px;
	padding: 5px 5px 5px 9px;
	background: rgba(225, 225, 153, 0.6);
}

.btn-show-alert {
	color: #ffff00;
	font-size: 15px;
	align-items: center;
	position: absolute;
	height: 100%;
	top: 0;
	right: 0;
	padding-right: 5px;
	cursor: pointer;
	pointer-events: none;
	display: none;
}

.enter-value .btn-show-alert {
	display: -webkit-box; /* Safari / Chrome 10 */
	display: -webkit-flex; /* Safari / Chrome 10 */
	display: -moz-box; /* Mozilla Firefox */
	display: -ms-flexbox; /* IE10 Consumer Preview */
	display: flex; /* W3C Markup, IE10 Release Preview */
}

.enter-value .btn-show-pass {
	display: none !important;
}

.enter-value input:hover {
	border: 1px solid #ffff00;
	border-radius: 2px;
}

/*------------------------------------------------------------------
[ Form ]*/
.login-form {
	width: 100%;
}

/*------------------------------------------------------------------
[ Input ]*/
.wrap-input {
	width: 100%;
	position: relative;
	border-bottom: 2px solid #4b4e51;
	margin-bottom: 37px;
}

.input {
	font-family: Poppins-Regular;
	font-size: 15px;
	color: #212529;
	line-height: 1.2;
	display: block;
	width: 100%;
	height: 45px;
	background: transparent;
	padding: 0 5px;
}

.focus-input {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}

.focus-input::before {
	content: "";
	display: block;
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	-webkit-transition: all 0.4s; /* Safari / Chrome 10 */
	-o-transition: all 0.4s; /* Opera */
	-moz-transition: all 0.4s; /* Mozilla Firefox */
	transition: all 0.4s; /* W3C Markup, IE10+ */
	background: #80ff80;
	background: -webkit-linear-gradient(left, #80ff80, #00802b);
	/* Safari / Chrome 10 */
	background: -o-linear-gradient(left, #80ff80, #00802b); /* Opera */
	background: -moz-linear-gradient(left, #80ff80, #00802b);
	/* Mozilla Firefox */
	background: -ms-linear-gradient(left, #80ff80, #00802b);
	/* IE10 Consumer Preview */
	background: linear-gradient(left, #80ff80, #00802b);
	/* W3C Markup, IE10 Release Preview */
}

.focus-input::after {
	font-family: Poppins-Regular;
	font-size: 15px;
	color: #4b4e51;
	line-height: 1.2;
	content: attr(data-placeholder);
	display: block;
	width: 100%;
	position: absolute;
	top: 16px;
	left: 0px;
	padding-left: 5px;
	-webkit-transition: all 0.4s; /* Safari / Chrome 10 */
	-o-transition: all 0.4s; /* Opera */
	-moz-transition: all 0.4s; /* Mozilla Firefox */
	transition: all 0.4s; /* W3C Markup, IE10+ */
}

.input:focus+.focus-input::after {
	top: -15px;
}

.input:focus+.focus-input::before {
	width: 100%;
}
.input:not([value=""])+.focus-input::after, 
.has-val.input+.focus-input::after {
	top: -15px;
}

.input:not([value=""])+.focus-input::before,
.has-val.input+.focus-input::before {
	width: 100%;
}

/*------------------------------------------------------------------
[ Checkbox ]*/
.checkbox {
	font-size: 15px;
	color: #4b4e51;
}

.checkbox label:after {
	content: '';
	display: table;
	clear: both;
}

.checkbox .cr {
	position: relative;
	display: inline-block;
	border: 1px solid #4b4e51;
	border-radius: .25em;
	width: 1.3em;
	height: 1.3em;
	float: left;
	margin-right: .5em;
}

.cr {
	border-radius: 50%;
}

.checkbox .cr .cr-icon {
	position: absolute;
	line-height: 0;
	top: 50%;
	left: 20%;
}

.cr .cr-icon {
	margin-left: 0.04em;
}

.checkbox label input[type="checkbox"] {
	display: none;
}

.checkbox label input[type="checkbox"]+.cr>.cr-icon {
	transform: scale(3) rotateZ(-20deg);
	opacity: 0;
	transition: all .3s ease-in;
}

.checkbox label input[type="checkbox"]:checked+.cr>.cr-icon {
	transform: scale(1) rotateZ(0deg);
	opacity: 1;
}

.checkbox label input[type="checkbox"]:disabled+.cr {
	opacity: .5;
}

/*------------------------------------------------------------------
[ Button show password ]*/
.btn-show-pass {
	font-size: 15px;
	color: #4b4e51;
	display: -webkit-box; /* Safari / Chrome 10 */
	display: -webkit-flex; /* Safari / Chrome 10 */
	display: -moz-box; /* Mozilla Firefox */
	display: -ms-flexbox; /* IE10 Consumer Preview */
	display: flex; /* W3C Markup, IE10 Release Preview */
	align-items: center;
	position: absolute;
	height: 100%;
	top: 0;
	right: 0;
	padding-right: 5px;
	cursor: pointer;
	-webkit-transition: all 0.4s; /* Safari / Chrome 10 */
	-o-transition: all 0.4s; /* Opera */
	-moz-transition: all 0.4s; /* Mozilla Firefox */
	transition: all 0.4s; /* W3C Markup, IE10+ */
}

.btn-show-pass:hover {
	color: #80ff80;
}

/*------------------------------------------------------------------
[ Button login]*/
.container-login-form-btn {
	display: -webkit-box; /* Safari / Chrome 10 */
	display: -webkit-flex; /* Safari / Chrome 10 */
	display: -moz-box; /* Mozilla Firefox */
	display: -ms-flexbox; /* IE10 Consumer Preview */
	display: flex; /* W3C Markup, IE10 Release Preview */
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 13px;
	padding-bottom: 5px;
}

.wrap-login-form-btn {
	width: 100%;
	display: block;
	position: relative;
	z-index: 1;
	border-radius: 25px;
	overflow: hidden;
	margin: 0 auto;
}

.login-form-bgbtn {
	position: absolute;
	z-index: -1;
	width: 300%;
	height: 100%;
	background: #80ff80;
	background: -webkit-linear-gradient(right, #80ff80, #00802b, #80ff80, #00802b);
	background: -o-linear-gradient(right, #80ff80, #00802b, #80ff80, #00802b);
	background: -moz-linear-gradient(right, #80ff80, #00802b, #80ff80, #00802b);
	background: -ms-linear-gradient(right, #80ff80, #00802b, #80ff80, #00802b);
	background: linear-gradient(right, #80ff80, #00802b, #80ff80, #00802b);
	top: 0;
	left: -100%;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
	transform: translateZ(0);
}

.login-form-btn {
	font-family: Poppins-Medium;
	font-size: 15px;
	color: #fff;
	line-height: 1.2;
	text-transform: uppercase;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
	width: 100%;
	height: 50px;
}

.wrap-login-form-btn:hover .login-form-bgbtn {
	left: 0;
}

button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

a {
	color: #00802b;
	text-decoration: none;
	-webkit-transition: all 0.2s; /* Safari / Chrome 10 */
	-o-transition: all 0.2s; /* Opera */
	-moz-transition: all 0.2s; /* Mozilla Firefox */
	transition: all 0.2s; /* W3C Markup, IE10+ */
}

a:hover {
	color: #40c056;
	text-decoration: none;
}

/*------------------------------------------------------------------
[ Responsive ]*/
@media ( max-width : 576px) {
	.wrap-login {
		padding: 22px 15px 33px 15px;
	}
	.img-fluid {
		width: 60%;
	}
}
