 .u-section-1 {
  background-image: url("images/photo-1609443935270-78d23b74b59a.jpeg");
  background-position: 50% 50%;
}

.u-section-1 .u-sheet-1 {
  min-height: 1075px;
}

.u-section-1 .u-custom-html-1 {
  height: auto;
  min-height: 195px;
  margin: 226px -367px 60px 367px;
}

@media (max-width: 1199px) {
  .u-section-1 .u-sheet-1 {
    min-height: 886px;
  }

  .u-section-1 .u-custom-html-1 {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .u-section-1 .u-sheet-1 {
    min-height: 679px;
  }
}

@media (max-width: 767px) {
  .u-section-1 .u-sheet-1 {
    min-height: 509px;
  }
}

@media (max-width: 575px) {
  .u-section-1 .u-sheet-1 {
    min-height: 320px;
  }
}.napocan-form {
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}
body, html {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #111;
  position: relative;
}
.background {
  background: url("images/bg-cannabis.jpg") no-repeat center center fixed;
  background-size: cover;
  position: absolute;
  inset: 0;
  filter: brightness(0.6);
  z-index: -1;
}
.form-container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 40px 30px;
  max-width: 400px;
  width: 90%;
  color: white;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
.form-container h2 {
  margin-bottom: 24px;
  font-size: 24px;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.form label {
  font-size: 14px;
  margin-top: 8px;
}
.form input {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
  color: black;
}
.form input:focus {
  outline: 2px solid #4caf50;
}
button {
  width: 100%;
  padding: 12px;
  background: #4caf50;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
  transition: background 0.3s ease;
}
button:hover {
  background: #388e3c;
}
.form-footer {
  margin-top: 18px;
  font-size: 14px;
  text-align: center;
}
.form-footer a {
  color: #90caf9;
  text-decoration: none;
}
.napocan-form {
}
}@font-face {
  font-family: 'LeagueSpartan-Bold';
  font-style: normal;
  font-weight: 400;
  src: url(fonts/LeagueSpartan-Bold.otf);
}@font-face {
  font-family: 'LeagueSpartan-VariableFont_wght';
  font-style: normal;
  font-weight: 400;
  src: url(fonts/LeagueSpartan-VariableFont_wght.ttf);
}

/* Overlay-Hintergrund */
.modal {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  z-index: 9999;
  display: none;               /* wird per JS auf "flex" gesetzt */
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

/* Inneres Panel */
.modal-content {
  background-color: rgba(255, 255, 255, 0.95);
  color: #333;
  padding: 30px 40px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

/* Überschrift und Beschreibung */
.modal-title {
  font-size: 24px;
  margin-bottom: 12px;
  color: #478ac9; /* z.B. deine Markenfarbe */
}
.modal-desc {
  font-size: 14px;
  margin-bottom: 20px;
  color: #666;
}

/* Input-Feld */
#reset-email {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
}
#reset-email:focus {
  border-color: #478ac9;
}

/* Senden-Button */
.reset-btn {
  background-color: #478ac9; /* oder #4caf50 etc. */
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.reset-btn:hover {
  background-color: #3a76b0; /* etwas dunklerer Hover-Farbton */
}

/* Schließen-X */
.close-btn {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

/* Einfache Fade-In-Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

