/*************/
/* Allgemein */
/*************/

* {
	margin: 0; /* Außenabstand zum Browserrand */
	padding: 0; /* Innenabstand zum Browserrand */
	font-family: Arial; /* Schriftart */
}

html, body {
	background-color: #e9e9e9; /* Hintergrundfarbe der Seite*/
	height: 100%;
}

a {
	text-decoration: none; /* Links nicht unterstreichen */
	color: #000000;
}

p {
	font-size: 11px;
	float: right;
	padding-right: 5px;
}

/*********/
/*       */
/* Login */
/*       */
/*********/

#login {
	background-color: #abadb8;
	border: 1px #1d1e19 solid;
	position: absolute;
	width: 300px;
	height: 220px;
	top: 35%;
	left: 50%;
	margin-top: -100px;
	margin-left: -150px;
	border-radius: 20px;
}

#login form {
	position: relative;
	text-align: center;
	top: 10%;
}

#login form {
	position: relative;
	text-align: center;
	top: 10%;
}


#login h1 {
	/* Schrift fett */
	font-weight: bold;
	font-size: large;
	letter-spacing: 1px;
}

#login .textfeld {
	/* Abstand zwischen den Eingabefeldern und dem Login-Button */
	margin-top: 10px;
}

#login .textfeld input {
	/* Breite des Eingabefeldes */
	width: 200px;
	/* Höhe des Eingabefeldes */
	padding: 7px;
	letter-spacing: 2px;
}

#login .button input {
	cursor: pointer;
	width: 200px;
	padding: 10px;
	font-weight: bold;
	letter-spacing: 10px;
	margin-top: 10px;
}


/****************/
/*              */
/* Auswahlseite */
/*              */
/****************/

#wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

#containerReservation, #containerWeeklyPlan, #containerHoliday, #containerIt, #containerAdministration {
	background-color: #ffffff;
	display: inline-block;
	height: 200px;
	width: 200px;
	text-align: center;
	padding-top: 10px;
	padding-left: 10px;
	padding-right: 10px;
	margin-right: 10px;
	box-shadow: 5px 10px 7px silver;
	border-radius: 20px;
	letter-spacing: 1px;
}