body {
    margin: 0;
    padding: 0;
    background-color: #fcfcfc;
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-container {
    text-align: center;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    max-width: 400px;
    width: 90%;
}

/* Foto-Stile */
.image-wrapper {
    width: 100%;
    margin-bottom: 25px;
}

.login-image {
    width: 120px; /* Quadratische Größe für ein Logo/Vorschau-Bild */
    height: 120px;
    object-fit: cover;
    border-radius: 50%; /* Macht das Bild rund, für eckig einfach löschen */
    border: 1px solid #eeeeee;
}

h1 {
    font-weight: 200;
    font-size: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    color: #111111;
}

.divider {
    width: 40px;
    height: 1px;
    background-color: #cccccc;
    margin: 15px auto;
}

.subtitle {
    font-weight: 300;
    font-size: 0.9rem;
    color: #777777;
    margin-bottom: 25px;
}

/* Eingabefeld und Button */
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #dddddd;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    box-sizing: border-box;
    letter-spacing: 2px;
    text-align: center;
}

input[type="password"]:focus {
    outline: none;
    border-color: #999999;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #111111;
    color: #ffffff;
    border: none;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #333333;
}

.error-text {
    color: #bd3a3a;
    font-size: 0.85rem;
    margin-top: 15px;
    display: none;
    font-weight: 300;
}
