/* styles_login.css (angepasst für Johanniter-Look) */
* {
    box-sizing: border-box;
}

body, html {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font-family: "Maven Pro", Arial, sans-serif; /* Einheitliche Schriftart */
    background-color: #f0f0f0; /* Heller Hintergrund */
    color: #333; /* Dunklerer Text */
}

.container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px; /* Weniger stark abgerundet */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Dezenterer Schatten */
    transition: transform 0.3s ease;
    max-width: 350px;
    width: 100%;
    text-align: center;
    border-top: 5px solid #eb003c; /* Johanniter-Rot */
}

.container:hover {
    transform: scale(1.02); /* Weniger starker Hover-Effekt */
}

/* Logo-Styling */
.logo {
    width: 80%; /* Etwas kleineres Logo */
    margin-bottom: 1.5rem; /* Mehr Abstand */
}

h2 {
    margin-bottom: 1.5rem; /* Mehr Abstand */
    color: #eb003c; /* Johanniter-Rot */
    font-weight: bold;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px 12px; /* Mehr horizontaler Abstand */
    margin: 8px 0;
    border-radius: 4px; /* Weniger stark abgerundet */
    border: 1px solid #ccc;
    font-size: 1em;
    font-family: "Maven Pro", Arial, sans-serif; /* Einheitliche Schriftart */
}

input[type="checkbox"] {
    margin-right: 5px;
}

label {
    cursor: pointer;
    color: #555; /* Dunkleres Grau */
}

button {
    width: 100%;
    padding: 10px 15px; /* Mehr horizontaler Abstand */
    background-color: #eb003c;
    border: none;
    border-radius: 4px; /* Weniger stark abgerundet */
    color: #fff;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

button:hover {
    background-color: #c8002f; /* Dunkleres Rot */
}

#message {
    margin-top: 1rem;
    color: #d9534f; /* Dunkleres Rot für Fehlermeldungen */
    font-size: 0.9em;
}

.custom-button {
    background-color: #000548; /* Johanniter-Blau */
    color: #ffffff;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 0.9em;
    text-decoration: none;
}

.custom-button:hover {
    background-color: #000330; /* Dunkleres Blau */
}