* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
  color: #008BFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

#background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* Places the video behind other content */
}

.container {
  text-align: center;
  max-width: 400px;
  position: relative;
  z-index: 1; /* Places the content in front of the video */
}

.logo {
  width: 370px;
  margin-bottom: 30px;
}

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

.input-field {
  padding: 4px 10px;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid black;
  border-radius: 25px;
  outline: none;
  width: 250px;
  text-align: center;
  color: #008BFF;
}

.input-field::placeholder {
  color: black;
  opacity: 0.6;
}

.submit-btn {
  padding: 4px 10px;
  font-size: 14px;
  font-weight: bold;
  background-color: #008BFF;
  color: white;
  border: 1px solid black;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s;
}


.submit-btn:hover{
  background-color: #white;
  color: black;
}


footer {
  margin-top: 20px;
  font-size: 10px;
  color: black;
  max-width: 400px;
  line-height: 1.4;
  text-align: center;
}

.footer-heading {
  font-weight: bold;
  font-size: 12px;
  margin-bottom: 5px;
  opacity: 1;
}


.textfeld {
    margin-left: 20px;
	margin-right: 20px;
    max-width: 100%;
}

.textfeld h1 {
	font-family:  Helvetica, Arial, "sans-serif";
    font-size: 3em; /* Überschrift in größerer Schrift */
}

.textfeld p {
	font-family:  Helvetica, Arial, "sans-serif";
	font-weight: bold;
    font-size: 2em; /* Infotext in kleinerer Schrift */
}

