*{
    text-decoration: none;
    list-style-type:none;
    outline-style: none;
    margin: 0;
	font-family: 'Poppins', sans-serif;
	padding: 0;
}
body{
	background-color: #ebeeef;
}
input:focus::placeholder {
	color: transparent;
}
textarea:focus, input:focus {
	border-color: transparent !important;
}
.input100:focus + .focus-input100::before {
	width: 100%;
}
a:hover {
	text-decoration: none;
	color: #57b846;
}
.input-checkbox100:checked + .label-checkbox100::before {
	color: #57b846;
}
.limiter {
	width: 100%;
	margin: 0 auto;
}
.container-login100 {
	width: 100%;
	min-height: 100vh;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background: #ebeeef;
}
.wrap-login100 {
	width: 670px;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}
.login100-form-title {
	width: 100%;
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 70px 15px 74px;
}
.login100-form-title::before {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(54,84,99,.7);
}
.login100-form-title-1 {
	font-weight: bold;
	font-size: 30px;
	color: #fff;
	text-transform: uppercase;
	line-height: 1.2;
	text-align: center;
}
.login100-form {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 43px 88px 93px 190px;
}
.validate-input {
	position: relative;
}
.wrap-input100 {
	width: 100%;
	position: relative;
    border-bottom: 1px solid #b2b2b2;
    margin-bottom:26px;
}
.label-input100 {
	font-weight: 400;
	font-size: 15px;
	color: gray;
	line-height: 1.2;
	text-align: right;
	position: absolute;
	top: 14px;
	left: -105px;
	width: 80px;
}
input.input100 {
	height: 45px;
}
.input100 {
	font-weight: 400;
	font-size: 15px;
	color: #555;
	line-height: 1.2;
	display: block;
	width: 100%;
    background: 0 0;
    border:0;
	padding: 0 5px;
}
.focus-input100::before {
	content: "";
	display: block;
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 0;
	height: 1px;
	-webkit-transition: all .6s;
	-o-transition: all .6s;
	-moz-transition: all .6s;
	transition: all .6s;
	background: #57b846;
}
.focus-input100 {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}
.wrap-input100 {
	width: 100%;
	position: relative;
    border-bottom: 1px solid #b2b2b2;
    margin-bottom: 18px;
}
.flex-sb-m {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
    align-items: center;
    width: 100%;
    padding-bottom: 30px;
}
.input-checkbox100 {
	display: none;
}
.label-checkbox100 {
	font-weight: 400;
	font-size: 13px;
	color: #999;
	line-height: 1.4;
	display: block;
	position: relative;
	padding-left: 26px;
	cursor: pointer;
}
.label-checkbox100::before {
	content: "\f00c";
	font-family: FontAwesome;
	font-size: 13px;
	color: transparent;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 18px;
	height: 18px;
	border-radius: 2px;
	background: #fff;
	border: 1px solid #e6e6e6;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.txt1 {
	font-weight: 400;
	font-size: 13px;
	line-height: 1.4;
	color: #999;
}

.login100-form-btn {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
	min-width: 160px;
	height: 50px;
	background-color: #57b846;
	border-radius: 25px;
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	line-height: 1.2;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	-moz-transition: all .4s;
    transition: all .4s;    
    border-style: none;
    cursor:pointer
}
.login100-form-btn:hover {
	background-color: #333;
}

/* responsive break point */
@media only screen and (max-width: 575px) {
	.wrap-login100{
		width:auto
	}
	.login100-form-title{
		padding:50px 0 ;
	}
	.login100-form{
		padding:25px 15px;
	}
	.label-input100{
		display:none
	}
	.container-login100 {
		padding: 0 15px;
	}
}

@media only screen and (max-width: 2000px){
	.container-login100,
	.limiter{
		width: auto;
	}
}
