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

body {
	background: #36474f;
	font-family: "Noto 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;
}

ul {
	list-style: none;
}
/* ***** BASICS ***** */

.container {
	width: 350px;
	background: #fff;
	border-radius: 4px;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

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

.siteContent {
	width: 100%;
	padding: 20px 40px;
}

.formField {
	width: 100%;
	margin-bottom: 15px;
}

.formField label {
	display: block;
	font-size: 14px;
	margin-bottom: 2px;
}

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

.formCheckbox {
	width: 100%;
	font-size: 15px;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}

.formCheckbox input {
	margin: 0 10px;
}

.formSubmit {
	width: 100%;
}

.formSubmit button {
	width: 100%;
	height: 50px;
	background: #597880;
	border-radius: 5px;
	border: none;
	outline: none;
	font-family: inherit;
	font-size: 16px;
	color: #fff;
	padding: 0 15px;
}


.siteLinkbox {
	width: 100%;
	margin-top: 15px;
	text-align: center;
}

.siteLinkbox > a {
	font-size: 15px;
}

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

.siteFooter {
	width: 100%;
	padding: 20px;
	font-size: 14px;
	text-align: center;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}