/* Grundlayout */
body {
    font-family: "Segoe UI", Roboto, sans-serif;
    background: #f0f2f5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container */
.auth-box {
    background: #fff;
    padding: 2.5em;
 /*   width: 360px; */
    border-radius: 4px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
}

/* Titel */
.auth-box h2 {
    margin-bottom: 1em;
    font-weight: 600;
    color: #333;
}

/* Input-Felder */
.auth-box input {
    width: 100%;
    padding: 0.8em;
    margin-bottom: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    transition: border-color 0.2s;
}

.auth-box input:focus {
    border-color: #0078ff;
    outline: none;
}

/* Button */
.auth-box button {
    width: 100%;
    padding: 0.9em;
    background: #0078ff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
}

.auth-box button:hover {
    background: #005fcc;
}

/* Fehlermeldungen */
.message {
    margin-bottom: 1em;
    padding: 0.7em;
    border-radius: 6px;
    font-size: 0.9em;
}

.error {
    background: #ffe5e5;
    color: #b30000;
}

.success {
    background: #e5ffe5;
    color: #006600;
}

/* Link */
.auth-box a {
    display: inline-block;
    margin-top: 1em;
    color: #0078ff;
    text-decoration: none;
}

.auth-box a:hover {
    text-decoration: underline;
}
