/*
 * Projektname    : The Story
 * Pfad           : /modules/auth/css/
 * Dateiname      : login.css
 * Erstellungsdatum: 2025-06-05
 * Dateiversion   : 1.0
 * Änderungsdatum : 2025-06-05
 * Entwicklername : Firefly
 */

body {
    font-family: sans-serif;
    background: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 300px;
}

input {
    display: block;
    margin-bottom: 15px;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

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

button:hover {
    background: #0056b3;
}