* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/font/Poppins-Regular.ttf");
}

header {
  background-color: #191d3a;
  color: white;
  padding: 1em;
  text-align: center;
}

/* Standard: untereinander (für größere Bildschirme) */
.logo-text-wrapper {
  display: block;
  text-align: center;
}

.logo-header img {
  height: 120px;
  display: block;
  margin: 0 auto 0.5em auto;
}

.header-text {
  font-size: 1.8em;
  margin-top: 0.5em;
}

@media (max-width: 600px) {
  .logo-text-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    gap: 1em;
  }

  .logo-header img {
    height: 80px;
  }

  .header-text {
    font-size: 1.2em;
    margin-top: 0;
  }
}

html,
body {
  height: 100%;
  font-family: "Poppins", sans-serif;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  padding: 2em;
}

form {
  background: white;
  padding: 2em;
  border-radius: 8px;
  max-width: 1000px;
  margin: auto;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  width: 100%;
}

label {
  font-weight: bold;
  display: block;
  margin-top: 1em;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.5em;
  margin-top: 0.2em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.checkbox-group,
.radio-group {
  margin-top: 0.5em;
}

button {
  margin-top: 2em;
  padding: 0.7em 1.5em;
  background-color: #048abf;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
}

button:hover {
  background-color: #044075;
}

.form-group {
  border: 1px solid #ccc;
  padding: 1.5em;
  border-radius: 8px;
  background-color: #f9f9f9;
  margin-bottom: 2em;
}
.form-group h2 {
  color: #048abf;
  margin-bottom: 0.5em;
}
.success {
  color: green;
  margin-top: 1em;
  font-weight: bold;
}

.form-message {
  background-color: #fff3cd;
  border: 1px solid #ffeeba;
  color: #856404;
  padding: 1em;
  margin: 1em auto;
  max-width: 1000px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.confirmation {
  background-color: #e6ffea;
  border: 1px solid #28a745;
  padding: 2em;
  border-radius: 8px;
  max-width: 800px;
  margin: 3em auto;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.confirmation h2 {
  color: #28a745;
  font-size: 2em;
  margin-bottom: 0.5em;
}

.confirmation p {
  font-size: 1.2em;
}

.confirmation a {
  display: inline-block;
  margin-top: 2em;
  padding: 0.7em 1.5em;
  background-color: #048abf;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.confirmation a:hover {
  background-color: #044075;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  flex-wrap: wrap;
  text-align: left;
}

.header-row img {
  height: 60px;
  width: auto;
}

footer {
  position: relative;
  background-color: #002b5c;
  height: auto;
  color: white;
  padding: 40px 20px 60px;
  text-align: center;
  overflow: hidden;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
