body {
    font-family: "Open Sans", Arial, sans-serif;
    background-color: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #323130;
}

/* Login Box */
.login-container {
    background: #fff;
    border: 1px solid #e1e4e8;
    border-radius: 6px;
    box-shadow: 0 0 15px rgb(0 0 0 / 0.1);
    width: 320px;
    padding: 32px 24px;
    box-sizing: border-box;
    text-align: center;
}

/* Überschrift */
h1 {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 28px;
    color: #323130;
}

/* Labels */
label {
    display: block;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: #605e5c;
}

/* Input Felder */
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 20px;
    font-size: 16px;
    border: 1px solid #e1e4e8;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #007acc;
    outline: none;
}

/* Button */
button {
    background-color: #007acc;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

button:hover {
    background-color: #005a9e;
}

/* Fehlerbox */
.error {
    background-color: #fde7e9;
    border-left: 4px solid #d93025;
    color: #a50e0e;
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 3px;
    font-size: 14px;
    text-align: left;
}