:host {
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;    
  padding: 20px;
  box-sizing: border-box;
  text-align: center;     
  gap: 16px;           
}

* {
    font-family: sans-serif;
}

.content {
    padding: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 700px;     
  margin-bottom: 2rem;
  box-sizing: border-box;
}

.footer-links {
    text-align: center;
}

.headline {
  font-size: 3rem;
  color: #599f74;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.5rem;
}

/* Überarbeitetes Formular-Design */
.form-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 400px;
  margin: 2rem auto 2rem auto;
  padding: 32px 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(89, 159, 116, 0.10), 0 1.5px 4px rgba(0,0,0,0.04);
  align-items: stretch;
}

.form-container label {
  font-size: 1.1rem;
  color: #2d4739;
  margin-bottom: 6px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.form-container input[type="text"],
.form-container input[type="email"] {
  padding: 12px 14px;
  border: 1.5px solid #cbe3d2;
  border-radius: 8px;
  font-size: 1rem;
  background: #f8faf9;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  margin-bottom: 2px;
}

.form-container input[type="text"]:focus,
.form-container input[type="email"]:focus {
  border-color: #599f74;
  box-shadow: 0 0 0 2px #e2f3ea;
}

#emailError {
  color: #d32f2f;
  font-size: 0.97rem;
  margin-top: -8px;
  margin-bottom: 4px;
  min-height: 18px;
  display: block;
}

.custom-button {
  background-color: #599f74 !important;
  color: #fff !important;
  border: none;
  border-radius: 10px;
  width: 100%;
  padding: 14px 0;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 18px 0 0 0;
  box-shadow: 0 2px 8px rgba(89, 159, 116, 0.08);
  cursor: pointer;
  transition: background 0.18s, transform 0.15s;
  display: block;
  letter-spacing: 0.01em;
}

.custom-button:hover,
.custom-button:focus {
  background-color: #417c57 !important;
  transform: translateY(-2px) scale(1.02);
  outline: none;
}

.frida-image {
  max-width: 90vw;
  max-height: 40vh;
  height: auto;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

.footer {
  display: flex;
  justify-content: center;  /* zentriert die Bilder horizontal */
  gap: 20px;                /* Abstand zwischen den Bildern */
  padding: 20px 0;
}

.footer-link {
  display: inline-block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.footer-link:hover {
  transform: scale(1.1);  /* Vergrößert Bild beim Hover */
}

.footer-image {
  width: 80px;    /* Breite der Bilder */
  height: auto;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* oder center für vertikale Zentrierung */
  min-height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
    color: #599f74;
    cursor: pointer;
    text-decoration: underline;
    border: none;
    background: none;
    font: inherit;
    padding: 0;
}
a:hover {
    color: #417c57;
}