@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Poppins&family=Raleway&display=swap');

* {
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

body {
	font-family: 'Muli-Regular';
	font-size: 14px;
	margin: 0;
	color: #999;
}

input,
textarea,
select,
button {
	font-family: 'Muli-Regular';
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul {
	margin: 0;
}

img {
	max-width: 100%;
}

ul {
	padding-left: 0;
	margin-bottom: 0;
}

a {
	text-decoration: none;
}

:focus {
	outline: none;
}

.wrapper {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #502f8ae1;
}

.inner {
	position: relative;
	width: 500px;
}

.image-1 {
	position: absolute;
	bottom: -12px;
	left: -191px;
	z-index: 99;
}

.image-2 {
	position: absolute;
	bottom: 0;
	right: -129px;
}

form {
	width: 100%;
	position: relative;
	z-index: 9;
	padding: 77px 50px 66px;
	background: #fff;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

h4 {
	color: #616161;
	letter-spacing: 3px;
	text-align: center;
	margin-bottom: 50px;
}

#line {
	height: 2px;
	width: 90px;
	background-color: #f4ba0c;
	margin: 15px auto;
}

.form_container {
	position: relative;
	margin-bottom: 21px;
}
.form_container span {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 15px;
	color: #333;
}
.form_container span.lnr-lock {
	left: 2px;
}

.form_control {
	border: none;
	border-bottom: 1px solid #e6e6e6;
	display: block;
	width: 100%;
	height: 38px;
	background: none;
	padding: 3px 42px 0px;
	color: #666;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
}
.form_control::placeholder {
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
	color: #999;
	transform: translateY(1px);
}

.form_control:focus {
	border-bottom: 2px solid #f4ba0c;
}

button {
	border: none;
	width: 100%;
	height: 49px;
	margin-top: 50px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	background: #d6b758fc;
	color: #fff;
	text-transform: uppercase;
	font-size: 15px;
	letter-spacing: 2px;
	transition: all 0.5s;
	position: relative;
	overflow: hidden;
}
button span {
	position: relative;
	z-index: 2;
}
button:before,
button:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: #f4ba0c;
	transition: all 0.3s;
	transform: translate(-100%, 0);
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
button:after {
	transition-delay: 0.2s;
}
button:hover:before,
button:hover:after {
	transform: translate(0, 0);
}

@media (max-width: 991px) {
	.inner {
		width: 470px;
		left: 4%;
	}
}
@media (max-width: 767px) {
	.inner {
		width: 100%;
		left: 0;
	}

	.image-1,
	.image-2 {
		display: none;
	}

	form {
		padding: 35px;
		box-shadow: none;
	}

	.wrapper {
		background: none;
	}
}
