body {
	width: 100%;
	height: auto;
	padding: 0px;
	margin-top: 50px;
	background: #F5F5DC;
	overflow-x: hidden;
}

div.above {
	margin: 0px;
	padding: 0px;
	width: 100%;
	position: fixed;
	top: 0;
}

ul.boven img { /* Logo */
	width: 120px;
	height: 80px;
	padding: 0px;
	margin-left: 20px;
	float: left;
	border-radius: 5px;
	z-index: 3;
	position: absolute;

}

a.account {
	display: inline;
	color: white;
	text-align: center;
	padding: 10px 14px;
	margin: 1px;
	margin-top: 8px;
	text-decoration: none;
	background-color: red;
	float: right;
	font-family: "Audiowide", sans-serif;
	border-radius: 5px;
	transition: width 3s;
	transition-timing-function: ease-out;
	width: 100px;
}

a.account:hover{
	background-color: blue;
	width: 110px;
}

ul.boven{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	background-color: black;
	height: 100px;
	width: 100%;

}

div.rechtsboven{
	margin-right: 20px;
}

ul.onder {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	background-color: black;
	display: flex;
	justify-content: center;
	width: 100%;

}

/* ----------------------------------------------------------------------*/

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    margin: 0;
    background-color: #f5f5dc; /* Light beige background */
}

input[name=emailaddress], input[name=password], select {	
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  
  input[name=Registreer], input[name=Inloggen] {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  input[name=Registreer], input[name=Inloggen]:hover {
    background-color: #45a049;
  }
  
  input[type=text], select {
    width: 400px;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  
  input[type=submit] {
    width: 400px;
    background-color: silver;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  input[type=submit]:hover {
    background-color: gold;
  }
  
  textarea {
    width: 100%;
    height: 150px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 16px;
    resize: none;
  }
  
  div.login{
    text-align: left;
    width: 400px;
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
    margin: 100px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);

  }
  
  div.container{
      text-align: center;
  }
  
  div.index {
      width: auto;
      height: auto;
      border: 1px solid black;
      padding: 10px;
      border-radius: 5px;
  }