/* Grundlayout */
body.custom-bg {
  background-color: #105587;
  min-height: 100vh;
  box-sizing: border-box;
  padding-block: 4vh;     /* oben/unten */
  padding-inline: 6vw;    /* links/rechts */
  margin: 0;
}

/* Container-Box */
.container {
  width: 100%;
  max-width: 900px;
  min-height: calc(100vh - 8vh); /* statt height */
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

/* Header oben */
.header {
  background-color: #FB710D;
  flex: 0 0 13%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.header h1 {
  font-size: 2.25rem;  /* text-4xl (36px) */
  font-weight: 700;
  color: white;
}

.header button {
  font-size: 1rem;      /* text-base (16px) */
}

/* Navigation */
.navbar {
  background-color: #004070;
  flex: 0 0 8%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
  color: white;
  font-size: 1.375rem;  /* 22px */
  min-height: 60px;
}

.navbar a {
  color: white;
  text-decoration: none;
}

.navbar a:hover {
  text-decoration: underline;
}

/* Inhaltsbereich */
.content {
  flex: 1;
  background-image: url('img/himmel.png');
  background-color: #1F4FC1;
  background-size: 100% 100%;
  text-align: center;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Textbereich oben */
.content-top {
  margin-top: 1rem;
}

.content-top h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.content-top p {
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 2rem auto;
  color: white;
}

/* Buttonbereich unten */
.content-bottom {
  margin-top: auto;
  padding-top: 3rem;
  padding-bottom: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.content-bottom button {
  font-size: 1.25rem;
  padding: 1rem 1.5rem;
}

/* Header-Buttons */
.header button {
  font-size: 1.125rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.header button:first-child {
  background-color: #1e3a8a;
}

.header button:first-child:hover {
  background-color: #1d4ed8;
}

.header button:last-child {
  background-color: #16a34a;
}

.header button:last-child:hover {
  background-color: #22c55e;
}

/* Formularfelder */
input[type="email"],
input[type="text"] {
  border: 1px solid #ccc;
  border-radius: 0.375rem;
  padding: 0.5rem 1rem;
  width: 100%;
  font-size: 1rem;
  box-sizing: border-box;
}

/* Formularbutton */
button[type="submit"] {
  background-color: #1e3a8a;
  color: white;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
}

button[type="submit"]:hover {
  background-color: #1d4ed8;
}

/* Icon-Styling (z. B. Schloss) */
.lock-icon {
  width: 48px;
  height: 48px;
}
