* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: #f8f8f8;
	font-family: 'Spline Sans', sans-serif;
	font-size: 16px;
	color: #777;
	width: 100vw;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

a {
	color: #337ab7;
	text-decoration: none;
}


.container {
	width: 580px;
	background: #fff;
	border-radius: 5px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}


.header {
	width: 100%;
	padding: 20px;
	font-size: 18px;
	font-weight: 600;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.content {
	width: 100%;
	padding: 20px 30px;
}

.formFieldLine {
	width: 100%;
	margin-bottom: 15px;
	display: flex;
	align-items: flex-start;
	column-gap: 15px;
}

.formFieldBox {
	position: relative;
	flex: 1;
	width: 100%;
}

.formFieldBox input {
	width: 100%;
	height: 50px;
	background: #fff;
	border-radius: 5px;
	border: 1px solid #c0c0c0;
	outline: none;
	font-family: inherit;
	font-size: 15px;
	color: #777;
	padding: 0 40px;
}

.formFieldBox textarea {
	width: 100%;
	height: 250px;
	background: #fff;
	border-radius: 5px;
	border: 1px solid #c0c0c0;
	outline: none;
	font-family: inherit;
	font-size: 15px;
	color: #777;
	padding: 15px;
	resize: none;
}

.formFieldBox i.fieldIcon {
	position: absolute;
	top: 25px;
	transform: translateY(-50%);
	left: 15px;
	font-size: 18px;
	color: #8b8b8b;
}

.formFieldBox i.eyeIcon {
	position: absolute;
	top: 25px;
	transform: translateY(-50%);
	right: 15px;
	font-size: 18px;
	color: #8b8b8b;
	cursor: pointer;
}

.formLinkBox {
	flex: 1;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.formLinkBox a {
	color: #777;
	font-size: 15px;
}

.formLinkBox a i {
	margin-right: 6px;
}

.formButtonLine {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.formButtonLine button {
	height: 50px;
	background: #6096bf;
	border-radius: 5px;
	border: none;
	outline: none;
	font-family: inherit;
	font-size: 16px;
	color: #fff;
	padding: 0 20px;
}

.formButtonLine button i {
	margin-right: 6px;
}

.formError {
	width: 100%;
	margin-bottom: 15px;
	background: #ffe6e6;
	border-radius: 5px;
	color: #bf6060;
	font-size: 15px;
	font-style: italic;
	padding: 20px;
	text-align: center;
}

.formTrue {
	width: 100%;
	margin-bottom: 15px;
	background: #e6ffe6;
	border-radius: 5px;
	color: #72a372;
	font-size: 15px;
	font-style: italic;
	padding: 20px;
	text-align: center;
}

.footer {
	width: 100%;
	padding: 20px;
	font-size: 14px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer a {
	color: #6096bf;
}

.footer a i {
	margin-right: 5px;
}