/* Allgemeine Stile */
body {
  font-family: "Gill Sans Extrabold", sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

h1 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

/* Container für die Inputs */
.in {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

/* Stile für die Checkboxen und Labels */
.let {
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

label {
  margin-right: 10px;
  color: #555;
  font-weight: bold;
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

#lenght {
  width: 50px;
  padding: 5px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ddd;
  text-align: center;
}

/* Passwortausgabe-Stil */
p {
  display: none;
  margin-top: 20px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #333;
}

/* Schaltflächenstil */
.button-6 {
  align-items: center;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  display: inline-flex;
  font-family: system-ui, -apple-system, system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  justify-content: center;
  line-height: 1.25;
  min-height: 3rem;
  padding: 10px 20px;
  position: relative;
  transition: background-color 250ms, transform 150ms ease;
  user-select: none;
  vertical-align: baseline;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

/* Hover-Effekte für die Schaltfläche */
.button-6:hover,
.button-6:focus {
  background-color: #0056b3;
}

.button-6:hover {
  transform: translateY(-2px);
}

.button-6:active {
  background-color: #00408a;
  transform: translateY(0);
}
