body {
  font-family: Arial, sans-serif;
  /*  background-image: url("/images/background.jpg"); */
  background-color: rgb(173, 173, 173);
  background-size: cover;
  background-attachment: fixed;
  color: #ffffff;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
}

.login-wrapper {
  max-width: 400px;
  margin: 20px auto;
  padding: 2rem;
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);

}

.login-wrapper h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: black;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #000000;
}

.login-form input {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.login-form button {
  padding: 0.8rem;
  background-color: #006400;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.login-form button:hover {
  background-color: #123456;
}
.password-wrapper {
  position: relative;
  width: 100%;
}

.password-wrapper input {
  width: 100%;
  padding-right: 2.5em; /* Platz für das Icon */
  box-sizing: border-box;
}

.toggle-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1.1em;
}
.error-message {
  color: #ff6666;
  font-weight: bold;
  margin: 10px 0;
}