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

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

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

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

.container {
	max-width: 280px;
	width: 100%;
	background: #fff;
	border-radius: 5px;
	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;
}

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

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

/* ********** FORMULAR ********** */
.formField {
	position: relative;
	width: 100%;
	margin-bottom: 15px;
}

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

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

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

.formLink {
	width: 100%;
	margin-bottom: 15px;
	text-align: right;
}

.formLink a {
	font-size: 15px;
}

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

.formButton {
	width: 100%;
}

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

.formButton button i {
	margin-right: 6px;
}
/* ********** FORMULAR ********** */

/* ********** SYSTEMMELDUNGEN ********** */
.sysError {
	width: 100%;
	margin-bottom: 15px;
	border-left: 3px solid #bf6060;
	padding: 20px;
	font-size: 15px;
	color: #bf6060;
	font-style: italic;
	text-align: center;
}

.sysTrue {
	width: 100%;
	margin-bottom: 15px;
	border-left: 3px solid #72a372;
	padding: 20px;
	font-size: 15px;
	color: #72a372;
	font-style: italic;
	text-align: center;
}
/* ********** SYSTEMMELDUNGEN ********** */