/*
 *  Author: Dominique Wegner
 *  Date:     01.08.2020 (d.m.Y)
 *
 *  Layout-Index:
 *
 *  $1  - Common Elements
 *  $2  - Header
 *  $3  - Content
 *  $4  - Layout
 *  $5  - Navigation
 *  $6  - Footer
 *  $7  - Login
 *  $8  - Registration
 *  $99 - All pages
 */

/* $1 - Common Elements //////////////////////////////////////////////////////*/
body {
  /* ----- Firefox ----- */
  /* ----- Chrome, Safari ----- */
  /* ----- Internet Explorer ----- */
  background: -webkit-linear-gradient(#81F7F3, #fff, #fff, #81F7F3);
	background: -moz-linear-gradient(#81F7F3, #fff, #fff, #81F7F3);
	background: -ms-linear-gradient(#81F7F3, #fff, #fff, #81F7F3);
	background: -o-linear-gradient(#81F7F3, #fff, #fff, #81F7F3);
	background: linear-gradient(#81F7F3, #fff, #fff, #81F7F3);
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.page_entry {
	padding: 0;
}

/* STANDARD TAGs ------------------------------------------------------------ */
select, input.text, textarea {
	color: #000;
	padding: 0;
	width: auto;
	background: #fff;
	margin: 0;
}

a, a:visited {
	color: #00BBFF;
	text-decoration: none;
	outline: none;
}

a:hover {
	text-decoration: underline;
}

/* LAYOUT ELEMENTS ---------------------------------------------------------- */
.hidden, .visible_by_print {
	/* invisible elements */
	display: none;
	speak: none;
	visibility: hidden;
}

.nospace {
	/* for divs with only an image, to prevent spaces */
	font-size: 0;
	line-height: 0;
}

  /* set in outer element to clear after this element */
.clearfix:after {
	clear: both;
	content: ".";
	display: block;
	font-size: 0;
	height: 0;
	line-height: 0;
	visibility: hidden;
}

.clearfix {
	display: inline-block;
}

html[xmlns] .clearfix {
	display: block;
}

* html .clearfix {
	/* for ie6 */
	height: 1%;
}


/* $2 - Header ///////////////////////////////////////////////////////////////*/
#header {
  display: flex;
  justify-content: center;
  align-items: center;
}
#header > div {
  margin:5px 100px 5px 0;
}

.inner_title a {
  margin: 5px;
  text-decoration: none;
}

.inner_title h1 {
  color: #fff;
  font-family: 'Rochester', cursive;
  font-size: 45px;
  letter-spacing: 3px;
  padding-top: 5px;
  text-shadow: 2px  2px 2px black,
               2px -2px 2px black,
              -2px  2px 2px black,
              -2px -2px 2px black;
}

.inner_title p {
  color: #fff;
  font-family: 'Rouge Script', cursive;
  font-size: 30px;
  line-height: 60px;
  text-shadow: 1px  1px 1px black,
               1px -1px 1px black,
              -1px  1px 1px black,
              -1px -1px 1px black;
}

/* $3 - Content //////////////////////////////////////////////////////////////*/
#content {
  display: flex;
}

/* $4 - Layout ///////////////////////////////////////////////////////////////*/
.layout {
  border: 1px solid red;
  margin: 5px 5px 5px 0;
  padding: 5px;
  width: 100%;
}

/* $5 - Navigation ///////////////////////////////////////////////////////////*/
.navi {
  border: 1px solid red;
  margin: 5px;
  padding: 5px;
  text-align: center;
}
/* $6 - Footer ///////////////////////////////////////////////////////////////*/
#footer {
  border: 1px solid red;
  margin: 5px 0 0 0;
  
}
/* $7 - Login ////////////////////////////////////////////////////////////////*/
#login {
  border: 1px solid #000;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 5px 0 0 0;
  padding: 5px;
}

#login label {
  font-size: 12px;
  font-weight: bold;
}

.login {
  border: 1px solid #000;
  border-radius: 10px;
  font-size: 12px;
  margin-bottom: 5px;
  padding: 2px 0 2px 7px;
  width: 170px;
}

.lgn_button {
  font-size: 12px;
  font-weight: bold;
  padding: 2px;
  width: 80px;
}

#logout {
  display: flex;
  flex-direction: column;
}

#logout label {
  font-size: 14px;
  font-weight: bold;
  text-decoration: underline;
}

#logout input {
  margin: 10px 0 0 0;
}

/* $8 - Registration /////////////////////////////////////////////////////////*/
#ctn_register {
  display: flex;
  margin-left: 50px;
}

.con_register {
  border-right: solid 2px silver;
  display: block;
  margin-right: 150px;
  text-align: center;
  width: 100%;
}

.con_register h3 {
  text-align: center;
  text-decoration: underline;
}

.con_label {
  margin-top: 5px;
}

.con_label_input input {
  font-weight: bold;
  margin-top: 25px;
  padding: 2px;
}

.con_label label {
display: block;
float: left;
font-weight: bold;
padding: 1px;
text-align: left;
width: 40%;
}

.con_label input {
  border: 1px solid #000;
  font-weight: bold;
  padding: 1px;
}

/* $99 - All pages ///////////////////////////////////////////////////////////*/
.search  {
  display: flex;
  flex-direction: row;
  align-items: center;
}

label.error {
  color: red;
  font-size: 10px;
  width: 100%;
}

.access {
  color: green;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
}

.denied {
  color: red;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
}

#wartung  {
  background-image: url("../img/wartung/wartung.png") ;
  border: 5px solid red;
  border-radius: 10px;
  margin: 5px auto;
  padding: 5px;
  height: 325px;
  width: 740px;
}




















