/**********************************************************************
	html & body
*/

body {
	padding: 10px;
	
	background-color: #f4edf6;
}



/**********************************************************************
	header
*/

#header {
	flex-shrink: 0;
	
	display: flex;
	align-items: center;
	
	height: 60px;
	
	border-radius: 5px;
	background-color: white;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
}

#header .title {
	display: flex;
	align-items: center;
	
	height: 30px;
	margin-left: 15px;
	
	border-radius: 5px;
	overflow: hidden;
}

#header .title .icon {
	height: 100%;
	
	margin-right: 10px;
}

#header .title .icon img {
	display: block;
	height: 100%;
	
	border-radius: 0 5px 5px 0;
}

#header .title .projectName {
	font-size: 16px;
	font-weight: 500;
}

#header .navigation {
	flex: 1;
	
	display: flex;
	justify-content: center;
	align-items: center;
}

#header .navigation a {
	display: block;
	
	padding: 5px 10px;
	
	border-radius: 5px;
	color: rgba(0, 0, 0, 0.5);
	text-decoration: none;
	text-transform: uppercase;
}

#header .navigation a:hover {
	color: black;
}

#header .navigation a.active {
	background: linear-gradient(rgba(126,128,195,1) 0%, rgba(79,81,140,1) 100%);
	color: white;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

#header .buttons {
	margin-right: 10px;
}

#header .buttons a {
	display: inline-flex;
	
	color: rgba(0, 0, 0, 0.5);
	text-decoration: none;
}

#header .buttons a:hover {
	color: black;
}

#header .buttons a i.bi {
	margin-right: 5px;
}



/**********************************************************************
	content
*/

#content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

#content .centerBox {
	align-self: center;
	width: 100%;
	max-width: 600px;
	
	padding: 20px;
	box-sizing: border-box;
}

#content .centerBox .boxContentWrapper {
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
	background-color: white;
}

#content .centerBox .boxContentWrapper .header {
	margin: 5px;
	padding: 10px;
	
	border-radius: 5px;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
	background: linear-gradient(rgba(126,128,195,1) 0%, rgba(79,81,140,1) 100%);
	color: white;
	font-size: 20px;
	font-weight: 500;
}

#content .centerBox .boxContentWrapper .boxContent {
	margin: 20px 10px 10px 10px;
}




/**********************************************************************
	Absätze & Überschriften
*/

p {
	margin-top: 10px;
}



/**********************************************************************
	Formulare
*/

.formField {
	max-width: 400px;
	
	margin-top: 20px;
	padding: 10px;
	
	box-sizing: border-box;
	
	border-radius: 5px;
	background-color: rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, 0.5);
}

.formField input[type=text],
.formField input[type=tel],
.formField input[type=number],
.formField input[type=email],
.formField input[type=search],
.formField input[type=password] {
	margin-top: 5px;
}

input[type=text],
input[type=tel],
input[type=number],
input[type=email],
input[type=search],
input[type=password] {
	padding: 5px 10px;
	
	border-radius: 5px;
	box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.15);
	background-color: white;
}


/**********************************************************************
	Buttons
*/

.button {
	border-radius: 5px;
	background: linear-gradient(rgba(126,128,195,1) 0%, rgba(79,81,140,1) 100%);
	color: white;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

.button.error {
	background: linear-gradient(#d95059 0%, #9b2129 100%);
}

.button.success {
	background: linear-gradient(#4fa374 0%, #2c6e49 100%);
}

.button:hover {
	background: linear-gradient(rgba(155,157,214,1) 0%, rgba(105,108,168,1) 100%);
}

.button.error:hover {
	background: linear-gradient(#ee6c75 0%, #c2363f 100%);
}

.button.success:hover {
	background: linear-gradient(rgba(106,194,144,1) 0%, rgba(66,145,100,1) 100%);
}


/**********************************************************************
	Popups
*/

.popup .container {
	border: none;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3);
}

.popup .container .header {
	margin: 5px;
	padding: 10px;
	
	border-radius: 5px;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
	background: linear-gradient(rgba(126,128,195,1) 0%, rgba(79,81,140,1) 100%);
	color: white;
	font-size: 20px;
	font-weight: 500;
}

.popup.error .container .header {
	background: linear-gradient(#d95059 0%, #9b2129 100%);
}

.popup.success .container .header {
	background: linear-gradient(#4fa374 0%, #2c6e49 100%);
}

.popup .container .content {
	padding: 20px 10px 10px 10px;
}
