/* Grundlayout und Typografie */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.6;
    padding: 20px;
    margin: 0;
}

.container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

/* Formulare */
form {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="text"],
.form-group select {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Buttons */
input[type="submit"] {
    width: 100%;
    background-color: #b30c00;
    color: #ffffff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

input[type="submit"]:hover {
    background-color: #b30c00;
}

/* Fehlermeldung */
.error {
    color: #ff0000;
    margin-bottom: 20px;
}

/* Link-Stile */
a {
    color: #b30c00;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.header {
    width: 100%;
    text-align: center; /* Zentriert das Logo */
    padding: 10px; /* Abstand nach innen */
}

.header img {
    max-width: 100px; /* Oder eine andere angemessene Größe */
    height: auto; /* Behält das Seitenverhältnis bei */
    display: block; /* Ermöglicht die Zentrierung mit Margin */
    margin: 0 auto; /* Fügt automatische Ränder hinzu
}