/* Google Font: Open Sans */
body, html {
margin: 0;
padding: 0;
font-family: 'Open Sans', sans-serif;
}

/* Hintergrund mit Pute und Broiler */
.background {
background-color: #2B2B2B;
background-image: url('silhouette_pute.png'), url('silhouette_broiler.png');
background-repeat: no-repeat, no-repeat;
background-position: left 5% bottom 10%, right 5% top 10%;
background-size: 25%, 25%;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
padding: 20px;
position: relative;
}

/* Formularcontainer */
.form-container {
background-color: #F9F6F3;
padding: 30px;
border-radius: 15px;
box-shadow: 0 0 25px rgba(0,0,0,0.3);
width: 100%;
max-width: 500px;
z-index: 2;
position: relative;
}

header {
text-align: center;
margin-bottom: 20px;
}

header h1 {
margin: 0;
color: #2B2B2B;
}

header p {
margin: 5px 0 0 0;
color: #555;
}

/* Formularfelder */
.field {
display: flex;
align-items: center;
margin-bottom: 15px;
}

.field img.icon {
width: 24px;
height: 24px;
margin-right: 10px;
}

input, select, textarea {
flex: 1;
padding: 10px;
border-radius: 8px;
border: 1px solid #ccc;
font-size: 14px;
font-family: 'Open Sans', sans-serif;
transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
outline: none;
border-color: #7FAE2E;
box-shadow: 0 0 0 3px rgba(127, 174, 46, 0.2);
}

textarea {
resize: vertical;
}

.checkbox {
display: flex;
align-items: flex-start;
}

.checkbox label {
margin-left: 5px;
font-size: 14px;
}

a {
color: #7FAE2E;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}

/* Button */
button {
width: 100%;
padding: 15px;
background-color: #7FAE2E;
color: #fff;
border: none;
border-radius: 30px;
font-size: 18px;
font-weight: 600;
cursor: pointer;
margin-top: 20px;
transition: background-color 0.3s ease, transform 0.1s ease;
}

button:hover {
background-color: #6E9927;
}

button:active {
transform: scale(0.98);
}
