/* Grundlayout */
body {
    background: #e6ecf2;
    font-family: 'Helvetica Neue', 'Segoe UI', Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
    padding: 0;
    color: #333;
}
 
/* Container */
.container {
    max-width: 550px;
    margin: 60px auto;
    background: #ffffff;
    border-radius: 10px;
    padding: 10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Header */
.header {
    background: #d72828; /* Vereinsrot */
    color: #ffffff;
    text-align: center;
    padding: 40px 35px;
}

.header img {
    max-width: 140px;
    height: auto;
    margin-bottom: 16px;
}

.header h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

/* Inhalt – HIER wurde der Abstand vergrößert */
.content {
    padding: 55px 45px; /* DEUTLICH MEHR INNENABSTAND */
}

.content h2 {
    color: #d72828;
    margin-top: 0;
    font-size: 24px;
    margin-bottom: 20px;
}

.content p {
    margin-bottom: 26px;
}

/* Buttons */
button,
input[type="submit"],
.btn {
    background: #b81f1f;
    border: none;
    border-radius: 5px;
    padding: 14px 32px;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 12px;
}

button:hover,
input[type="submit"]:hover,
.btn:hover {
    background: #8e1717;
}

/* Inputs */
input[type="checkbox"],
input[type="radio"] {
    margin-right: 12px;
}

input[type="email"],
input[type="text"],
select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 24px;
    font-size: 16px;
}

/* Footer */
.footer {
    text-align: center;
    color: #777;
    font-size: 12px;
    padding: 30px 0;
}

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

.footer a:hover {
    color: #333;
}

/* Responsiv */
@media (max-width: 600px) {
    .container {
        margin: 25px;
        border-radius: 8px;
    }
    .header {
        padding: 28px 20px;
    }
    .content {
        padding: 35px 20px; /* Mobil: immer noch luftig, aber nicht übertrieben */
    }
}
