/* Allgemeine Stile */
*, *::before, *::after {
    box-sizing: border-box;
  }

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1, h2, h3 {
    color: #003366;
    margin: 10px 0;
}

p {
    width: 100%;
    margin: 10px 0;
    color: #555555;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin: 5px 0;
}

/* Links und Buttons */
a {
    text-decoration: none;
    color: #003366;
}

a:hover {
    color: #0055cc;
}

input[type="button"], button {
    background-color: #003366;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

input[type="button"]:hover, button:hover {
    background-color: #0055cc;
}

header {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 4px 40px; 
    box-sizing: border-box;
    width: 100%;
    background-color: #f4f4f4;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header img {
    width: 50px;
    height: auto;
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 20px 0;
}
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #003366;
}

input[type="email"], input[type="password"], input[type="text"], input[type="number"], textarea, input[type="date"], select {
    padding: 10px;
    margin: 10px 0;
    font-size: 14px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    cursor: text;
}

textarea {
    resize: none;
}
