body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f5f5f5;
}

.container {
    width: fit-content;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 1.5);	
}

.login-error {
    color: red;
    margin-top: 10px;
    text-align: center;
}

.header {
    background-color: black;
    color: white;
    text-align: center;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.login-container {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
}

.login-form {
    padding: 20px;
    display: flex;
    flex-direction: column;
    background-color: white;
}

.form-group {
    margin-bottom: 20px; /* Vergrößert den Abstand zwischen den Formular-Elementen */
	margin-right: 15px;
	margin-top: 20px;	
}

.login-form label {
    display: block; /* Block-Display für das Label, um Abstand zum Input zu erzeugen */
    margin-bottom: 10px; /* Größerer Abstand zwischen Label und Input */
}

.login-form input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 300px;
}

.login-form button {
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
    align-self: center; /* Zentriert den Button in der Form */
}

.login-form button:hover {
    background-color: #0056b3;
}

.login-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #007bff;
}

.login-image img {
    max-width: 100%;
    max-height: 100%;
}
