/* Allgemeine Stile */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    color: #212529;
    line-height: 1.5;
}

/* Header */
h1 {
    color: #343a40;
    text-align: center;
    margin: 20px 0;
}

/* Links */
a {
    color: #007bff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Formular */
form {
    max-width: 400px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%; /* Stellt sicher, dass das Formular nicht breiter als 100% wird */
}

form label {
    display: block;
    margin-bottom: 8px;  /* Abstand unterhalb des Labels */
    font-weight: bold;
    font-size: 14px;     /* Schriftgröße anpassen, falls gewünscht */
    color: #343a40;      /* Etwas dunkleres Grau für bessere Lesbarkeit */
}

form input, form button {
    width: 100%;
    max-width: 100%; /* Verhindert, dass die Eingabefelder breiter werden als der Container */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
}

/* Eingabefelder */
form input {
    box-sizing: border-box; /* Verhindert, dass die Eingabefelder über den Container hinausgehen */
}

/* Login Button */
form button {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #0056b3;
}

/* Nachrichten (Flash Messages) */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
}

ul li.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

ul li.danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Zentrierte Inhalte */
.container {
    max-width: 800px;
    margin: 50px auto;
    text-align: center;
}

.container a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.container a:hover {
    background-color: #0056b3;
}

.logout-btn {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #dc3545;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.logout-btn:hover {
    background-color: #a71d2a;
}

/* Logo in der Mitte des Headers */
header .logo {
    text-align: center;
    margin-bottom: 20px;
}

header .logo img {
    width: auto;
    height: 80px; /* Hier die gewünschte Höhe für das Logo einstellen */
}

/* Datenschutz Hinweis */
.datenschutz-hinweis {
    color: red;
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 20px;
    text-align: center;
}