body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body input[type="submit"] {
    font-size: 150%;
    border-radius: 1em;
    color: #FFD700;
    background-color: #8B4513;
    border-color: #FFD700;
}

/* Kopfzeile */
.header {
    background-color: #8B4513; /* SaddleBrown */
    color: white;
    text-align: center;
    padding: 20px 0;
    background-image: url("img/logo_5_04c2.png");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
}
.header hr {
    width: 30%;
}

/* Container für die Spalten */
.container {
    display: flex;
    flex: 1;
    flex-wrap: wrap; /* Ermöglicht das Umbruchverhalten */
}

/* Spalten */
.column {
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
}

/* Linke Spalte */
.left-column {
    background-color: #FFD700; /* Gold */
    font-size: 100%;
    padding-left: 5%;
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 150px 175px;
}

.left-column textarea {
    width: 85%;
    height: 11em;
}

.left-column select, input[type="text"], input[type="email"] {
    width: 50%;
    font-size: 100%;
    margin-bottom: 2%;
}

/* Rechte Spalte */
.right-column {
    background-color: #FF8C00; /* DarkOrange */
}

#captcha {
    color: #FFD700; /* Gold */
    font-size: 10%;
}
#captcha input {
    font-size: 10%;
    background-color: #FFD700; /* Gold */
    border: none;
    width: 8em;
}

/* Fußzeile */
.footer {
    background-color: #8B4513; /* SaddleBrown */
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Media Queries für kleine Bildschirme */
@media (max-width: 768px) {
    .column {
        width: 100%; /* Volle Breite für beide Spalten */
        padding: 10px;
    }

    .left-column,
    .right-column {
        padding-left: 5%;
        background-size: 25%; /* Hintergrundbildgröße anpassen */
    }
	
	.left-column select {
		width: 60%;
	}

    .left-column textarea,
    .left-column input[type="text"], 
    .left-column input[type="email"] {
        width: 90%; /* Volle Breite für Eingabefelder */
    }
}
