/* CSS-Stile hier belassen */
/* 
Änderungen:
*/

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header {
    width: 100%;
    text-align: center;
}

header img {
    max-width: 100%;
	min-height: 150px;
    max-height: 200px; 
}

form {
    background-color: #fff; /*#fff = weiß */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input,
select,
textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[readonly] {
    background-color: #f2f2f2;
}

button {
    background-color: #908a6c;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #84906c;
}

p.success-message {
    color: #4caf50;
    font-weight: bold;
    text-align: center;
    margin-top: 16px; 
}

a:link, a:visited {
  text-decoration: none; 
  font-weight: bold; 
  color: #000000;
  font-size: 16px;
}
