/* Globale Stile und Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5c904 0%, #e6e3e3 100%);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Hauptcontainer */
.container {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 650px;
    width: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: scale(0.95);
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Header */
header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #3f51b5;
    margin-bottom: 10px;
}

header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 500px;
    margin: 0 auto;
}

/* Benachrichtigungs-Formular */
.notify-section {
    margin-top: 40px; /* Abstand nach oben angepasst */
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.notify-section h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.email-form {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.email-form input {
    flex-grow: 1;
    max-width: 300px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.email-form button {
    padding: 15px 25px;
    border: none;
    background-color: #3f51b5;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.email-form button:hover {
    background-color: #303f9f;
    transform: translateY(-2px);
}

/* Footer */
footer {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #888;
}

/* Responsive Design für mobile Geräte */
@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
    }

    header h1 {
        font-size: 2rem;
    }

    .email-form {
        flex-direction: column;
        align-items: center;
    }

    .email-form input,
    .email-form button {
        width: 100%;
        max-width: 300px;
    }
}

