.overlay {
  margin: auto auto;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  /* Dunkler Hintergrund */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  display: none;
  /* Über allem anderen */
}

.email-form {
  margin: auto auto;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 80%;
  height: 100%;
}

.email-form h2 {
  margin-top: 0;
  color: #333;
}

.email-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

.email-form input,
.email-form textarea {
  width: 95%;
  padding: 10px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.email-form textarea {
  resize: vertical;
}

.email-form button {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 10px;
}

.email-form button[type="button"] {
  background-color: #6c757d;
}

.email-form button:hover {
  opacity: 0.9;
}