/* Allgemein */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg,#f0f4ff,#d9e8ff);
    margin:0;
    padding:0;
    color:#1e1e2f;
}

/* Container */
.form-wrapper {
    max-width: 1000px;
    width: 90%;
    margin: 50px auto;
}
.form-container {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.form-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

/* Überschrift */
h2 {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 0.5rem;
    border-left: 6px solid #ff6b6b;
    padding-left: 10px;
}

/* Einleitung */
p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Formularelemente */
form label {
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}
form input, form textarea {
    width: 100%;
    padding: 1.2rem;
    margin-bottom: 1.8rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
}
form input:focus, form textarea:focus {
    border-color: #ff6b6b;
    outline: none;
    box-shadow: 0 0 10px rgba(255,107,107,0.2);
}
textarea { min-height: 250px; resize: vertical; }

/* Button */
button.btn {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg,#ff6b6b,#ff8787);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}
button.btn:hover {
    background: linear-gradient(135deg,#ff8787,#ff6b6b);
    transform: translateY(-3px);
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #888;
}
footer a { color:#ff6b6b; text-decoration:none; }
footer a:hover { text-decoration:underline; }
