.login-container {
    background-color: #2a2a40; /* Etwas hellerer Dunkelton für den Container */
    border: 2px solid #800020; /* Weinrote Umrandung */
    border-radius: 8px;
    padding: 20px 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    text-align: center;
    width: 70%;
    margin: auto; /* Zentriert den Container im verfügbaren Platz */
}

img {
    max-width: 50%;
    height: auto;
  }

h2 {
    color: #800020; /* Weinroter Text */
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Abstand zwischen den Formularfeldern */
}

label {
    font-weight: bold;
    text-align: left;
    color: #cccccc; /* Etwas hellere Schrift für Labels */
}

input[type="text"],
input[type="password"] {
    padding: 10px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #333;
    color: #ffffff;
    outline: none;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #800020; /* Fokusfarbe */
    box-shadow: 0 0 5px #800020;
}

button[type="submit"] {
    background-color: #800020; /* Weinrote Schaltfläche */
    color: #ffffff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #a8324b; /* Hellere Weinrot-Ton bei Hover */
}



