body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

.login-container h2 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}
a {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

a:hover {
    background-color: #0056b3;
}
.company-logo {
    display: block;
    max-width: 200px; /* Passen Sie die Größe nach Bedarf an */
    height: auto;
    margin: 0 auto 20px auto; /* Zentriert das Logo und fügt Abstand nach unten hinzu */
}

/* Responsive Anpassung für mobile Geräte */
@media (max-width: 480px) {
    .company-logo {
        max-width: 150px;
        margin-bottom: 15px;
    }
}

.back-button-container {
    margin-top: 20px;
    text-align: center;
    width: 100%; /* Sicherstellen, dass der Container die volle Breite nutzt */
}

.back-btn {
    display: inline-block;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    max-width: 100%; /* Verhindert, dass der Button breiter als der Container wird */
    box-sizing: border-box; /* Padding wird in die Gesamtbreite einberechnet */
}

.back-btn:hover {
    color: #333;
    background-color: #e9ecef;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

