/* Allgemeine Body-Stile */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('/wubu/images/wububackgrund.jpg'); /* Hintergrundbild wie beim Sendeplan */
    background-size: 100% 100%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    color: #f3f4f6; /* Helle Schriftfarbe für guten Kontrast */
}

/* Header-Stil */
header, h1 {
    background: transparent;
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

/* Link-Stile (z.B. Login-Link) */
a.login-button {
    color: #f3f4f6;
    text-decoration: none;
    background-color: #c7822c; /* Goldton */
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
    transition: background 0.3s;
}

a.login-button:hover {
    background-color: #a66f22;
}

/* Hauptbereich zentrieren */
main, form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Container für Login und Wunschformular */
.login-container, .wunsch-container {
    background-color: rgba(74, 54, 14, 0.85); /* Dunkles Messing-Braun mit Transparenz */
    border-radius: 8px;
    padding: 2rem;
    width: 320px;
    box-shadow: 0 0 15px rgba(0,0,0,0.7);
    color: #f3f4f6;
    text-align: center;
    margin: 20px auto;
}

/* Überschriften im Container */
.login-container h2, .wunsch-container h2 {
    margin-bottom: 20px;
}

/* Labels */
.login-container label, .wunsch-container label {
    display: block;
    margin-bottom: 5px;
    text-align: left;
    font-weight: bold;
}

/* Eingabefelder */
.login-container input[type="text"],
.login-container input[type="password"],
.wunsch-container input[type="text"],
.wunsch-container input[type="password"],
.wunsch-container input[type="number"] {
    width: 95%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #c7822c;
    border-radius: 5px;
    background-color: rgba(255,255,255,0.1);
    color: #f3f4f6;
    font-size: 1rem;
}

/* Placeholder-Farbe */
.login-container input[type="text"]::placeholder,
.login-container input[type="password"]::placeholder,
.wunsch-container input[type="text"]::placeholder,
.wunsch-container input[type="password"]::placeholder {
    color: #d9cba3;
}

/* Submit-Button */
.login-container input[type="submit"],
.wunsch-container input[type="submit"] {
    background: #c7822c; /* Goldton */
    color: #1a1a1a;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: bold;
    width: 100%;
    font-size: 1rem;
}

.login-container input[type="submit"]:hover,
.wunsch-container input[type="submit"]:hover {
    background: #a66f22;
}

/* Fehlermeldungen */
.error-message {
    color: #ff6b6b;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Erfolgsmeldungen */
.success-message {
    color: #a6d608;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Counter und Hinweis */
#counter, #hinweis {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #f3f4f6;
}

.hinweis {
    font-weight: bold;
    color: #c7822c;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    color: #f3f4f6;
    background: transparent;
    font-size: 0.9rem;
}

footer a {
    color: #c7822c;
    text-decoration: none;
}

footer a:hover {
    color: #a66f22;
}