/* Grundlegende Formatierung */
body {
    display: flex;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
}

/* Login Container */
.login-container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 400px;
}

/* Formular-Styling */
.login-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1rem;
}

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

.form-group input {
    width: 100%;
    padding: .5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Passwort zurücksetzen Link */
.password-reset {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    margin-top: .5rem;
    color: #007bff;
    text-decoration: none;
}

.password-reset:hover {
    text-decoration: underline;
}

/* Einloggen Button */
.login-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: .75rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    width: 100%;
    font-family: 'IBMPlexSans', sans-serif;
    transition: 0.5s ease-out;
}

/* Stile für deaktivierten Einloggen Button */
.login-button:disabled {
    background-color: grey;
    cursor: not-allowed;
    opacity: 0.5;
}

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

/* Stile für Hover auf deaktivierten Einloggen Button */
.login-button:disabled:hover {
    background-color: grey;
}

/* Footer-Bereich */
.powered-by {
    text-align: center;
    margin-top: 1.5rem;
    color: #cbcbcb;
    font-size: 0.8em;
}

.footer-links {
    text-align: center;
    padding-top: 1rem;
    margin-top: 1rem;
}

.footer-links a {
    color: #a7a7a7;
    text-decoration: none;
    margin: 1em 0.5rem;
    font-size: 0.8em;
}

.footer-links a:hover {
    text-decoration: underline;
}


.response {
    padding: 0.5em;
    font-weight: bold;
    font-size: 0.8em;
}


.response.error {
    background: #ffcfcf;
    color: #a52525;
}

.logo-container .logo {
    width: 150px;
    border-radius: 100px;
    box-shadow: 1px 5px 5px -4px black;
    position: absolute;
    top: -130px;
}

.logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 1.5em;
}