/* Auth- & Formularseiten (Login, Registrierung, Profil, Passwort zurücksetzen) */
/* Farbsprache an landing.html angelehnt: Navy #0f1923, Teal-Akzent #2a7d8c, Grau #6b7280/#c8cdd3 */

body {
    background-color: #f2f3f5;
    margin: 0;
    padding: 0;
}

.auth-card {
    background-color: #fff;
    border: 1px solid #c8cdd3;
    border-top: 3px solid #2a7d8c;
    border-radius: 3px;
    padding: 32px 28px;
}

.auth-card h2 {
    color: #0f1923;
    font-weight: 700;
    letter-spacing: -0.01em;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 14px;
    margin-top: 0;
    margin-bottom: 24px;
    text-align: left;
}

.auth-card h3 {
    color: #0f1923;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.auth-card hr {
    border: none;
    border-top: 1px solid #e5e7eb;
}

.auth-card .terms-section {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.auth-card .terms-section:last-of-type {
    border-bottom: none;
}

.auth-card .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.auth-card .checkbox-group input[type="checkbox"] {
    margin-top: 3px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 6px;
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

input[type="email"],
input[type="password"],
input[type="text"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #c8cdd3;
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 0.95rem;
    color: #0f1923;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus {
    outline: none;
    border-color: #2a7d8c;
    box-shadow: 0 0 0 3px rgba(42, 125, 140, 0.15);
}

button {
    background-color: #2a7d8c;
    color: #fff;
    padding: 11px 15px;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.15s ease;
}

button:hover {
    background-color: #1f6270;
}

.message {
    padding: 10px 12px;
    margin-bottom: 15px;
    border-radius: 3px;
    font-size: 0.92rem;
}

.error {
    background-color: #fdf1ee;
    color: #9a3b2e;
    border: 1px solid #f0d3c9;
}

.success {
    background-color: #eef6f0;
    color: #1a6b3a;
    border: 1px solid #d6e8da;
}

.warning {
    background-color: #fef6ee;
    color: #8b6914;
    border: 1px solid #f0e2c8;
}

.links {
    text-align: center;
    margin-top: 15px;
}

.links a {
    color: #2a7d8c;
    text-decoration: none;
    font-size: 0.9rem;
}

.links a:hover {
    text-decoration: underline;
}

.globale-layer-steuerung {
    position: fixed; /* Fixiert die Position */
    bottom: 20px;    /* 20px vom unteren Rand */
    right: 20px;     /* 20px vom rechten Rand */
    background-color: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000; /* Stellt sicher, dass es über anderen Inhalten liegt */
    max-height: 80vh; /* Maximale Höhe, um bei vielen Layern scrollbar zu bleiben */
    overflow-y: auto; /* Vertikales Scrollen bei Überlauf */
}
.globale-layer-steuerung div {
    margin-bottom: 8px;
}
.globale-layer-steuerung input[type="checkbox"] {
    margin-right: 5px;
}
.globale-layer-steuerung label {
    display: inline-block; /* Für besseres Layout der Checkboxen */
    color: #333;
    text-transform: none;
    font-weight: normal;
    letter-spacing: normal;
}
