header {
  width: 100%;
  background-color: #bde0fe;
  padding: 5px 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  margin-right: 20px;
}

.logo img {
  height: 100px;
}

nav {
  flex-grow: 1;
  text-align: right;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

.nav-links li {
  display: inline;
}

.nav-links a {
  color: #707070;
  text-decoration: none;
  font-size: 16px;
}

.nav-links a:hover {
  text-decoration: underline;
}

body {
  font-family: Arial, sans-serif;
  background-color: #e0f2fc;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 0;
}

.content-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

form {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  width: 500px;
}

h2,
p {
  text-align: left;
}

.Anrede {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.Anrede label {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.Anrede input[type="radio"] {
  margin-right: 10px;
  margin-left: 15px;
  margin-top: 0;
  margin-bottom: 8px;
}

.Anrede {
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.input-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-right: 10px;
}

.input-container:last-child {
  margin-right: 0;
}

.full-width {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="date"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.button-container {
  display: flex;
  justify-content: space-between;
}

button {
  width: 48%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background: #007bff;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background: #0056b3;
}

footer {
  background-color: #c4c4cc;
  margin-top: 50px;
  text-align: center;
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  margin: 10px;
  flex: 1;
  min-width: 200px;
}

.footer-section h4 {
  margin-bottom: 10px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.footer-content p,
.footer-content a {
  color: #707070;
  text-decoration: none;
  margin: 5px 0;
  white-space: nowrap;
}

.footer-content a:hover {
  color: #d8d8d8;
}

.link {
  color: blue;
  text-decoration: underline;
}

.footer-image {
  height: 40px;
  margin: 0 10px;
}

.footer-bottom {
  background-color: #222;
  color: #bbb;
  padding: 10px 0;
}

.footer-bottom p {
  margin: 0;
}
