body {
    font-family: Arial, sans-serif;
    background-color: #f7f8fa;
        line-height: 1.4;

    margin: 0;
    padding: 20px;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: auto;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

h1, h2 {
    color: #333;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
}

button {
    background-color: #4a90e2;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #357ab8;
}

.impressum {
    margin-top: 30px;
    font-size: 12px;
    color: #777;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}
.resources {
    margin-top: 30px;
}

.resources h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
}

.resource-item {
    margin: 12px 0;
    padding: 12px 15px;
    background-color: #f9f9f9;
    border-left: 4px solid #4a90e2;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.resource-item:hover {
    background-color: #eef5fc;
}

.resource-item a {
    text-decoration: none;
    color: #1a4a9e;
    font-weight: 500;
}

.resource-item a:hover {
    text-decoration: underline;
}


#success-message {
    margin: 20px auto; /* vertikaler Abstand & zentriert */
    padding: 12px 20px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.hidden {
    display: none;
}
