/* Grundlayout */
body {
    font-family: 'Comic Sans MS', 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #e0f7fa, #fce4ec);
    color: #333;
    margin: 0;
    padding: 0;
}

/* Navigation */
nav {
    background-color: #40e0d0; /* Türkis */
    padding: 12px;
    text-align: center;
    border-bottom: 4px solid #ff80ab; /* Rosa Akzent */
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 12px;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff80ab; /* Rosa Hover */
}

/* Hauptinhalt */
h2 {
    color: #40e0d0;
    text-shadow: 1px 1px #ffccdc;
}

form {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-width: 400px;
    margin: 20px auto;
}

textarea, input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 2px solid #40e0d0;
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 1em;
}

textarea:focus, input:focus {
    outline: none;
    border-color: #ff80ab;
    box-shadow: 0 0 8px #ff80ab;
}

/* Buttons */
button {
    background-color: #ff80ab; /* Rosa */
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
}

button:hover {
    background-color: #ec407a;
    transform: scale(1.05);
}

/* Nachrichten */
ul {
    list-style: none;
    padding: 0;
}

li {
    background: #f1f8f9;
    margin: 8px 0;
    padding: 10px;
    border-left: 6px solid #40e0d0;
    border-radius: 8px;
}

