body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

.logo-container {
    text-align: center;
    margin-top: 100px;
}

.logo-container .logo {
    max-width: 180px;
    margin-bottom: 5px;
}

.logo-container h1 {
    font-size: 1.8rem;
    color: #333;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 400px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 25px;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px; /* Größere Schrift */
    line-height: 1.5; /* Zeilenhöhe für bessere Lesbarkeit */
}

.form-group .password-container {
    position: relative;
}

.form-group .password-container input {
    padding-right: 40px;
}

.form-group .password-container .toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #555;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.form-footer a {
    color: #007BFF;
    text-decoration: none;
}

.login-button {
    background: red;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

.login-button:hover {
    background: darkred;
}

.error-message {
    color: #ff0000;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 10px;
}

footer {
    background-color: #e3e3e3; /* Dunkelgrauer Hintergrund */
    color: #1e90ff; /* Dunkelblaue Schriftfarbe */
    padding: 15px 50px; /* Innenabstand oben/unten und links/rechts */
    position: absolute; /* Absolut positioniert */
    bottom: 0; /* Am unteren Rand der Seite */
    width: 100%; /* Über die gesamte Seitenbreite */
    box-sizing: border-box; /* Padding wird in die Breite/Höhe einbezogen */
}

.footer-content {
    display: flex;
    justify-content: space-between; /* Verteilt die Elemente mit Abstand */
    align-items: center; /* Vertikal zentrieren */
}

.left-text {
    text-align: left; /* Text links ausrichten */
    color: black; /* Schwarze Schriftfarbe für den linken Text */
}

.right-text {
    text-align: right; /* Text rechts ausrichten */
}

footer a {
    color: #1e90ff; /* Linkfarbe */
    text-decoration: none; /* Entfernt die Unterstreichung */
    margin-left: 15px; /* Abstand zwischen Links */
}

footer a:hover {
    text-decoration: underline; /* Unterstreicht Link bei Hover */
}
