body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.upload-container {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 10px; /* Fügt Abstände innen zu den Formularfeldern hinzu */
}

label {
    font-size: 14px;
    color: #555;
}

input, textarea, button {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    width: calc(100% - 20px); /* Verhindert, dass Felder die gesamte Breite überschreiten */
    box-sizing: border-box; /* Zieht Padding und Border in die Gesamtbreite ein */
}

input:focus, textarea:focus {
    border-color: #007BFF;
    outline: none;
}

button {
    background-color: #007BFF;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.captcha {
    display: flex;
    flex-direction: column;
}

.captcha label {
    font-weight: bold;
}