*{
    margin: 0;
    padding: 0;
}

html {
    position: relative;
    min-height: 100%;
    font-size: 10px;
    font-family: sans-serif;
    height: 100%;
    margin: 0;
}

body 
{
    background: radial-gradient(#33383f, rgb(42, 47, 53));
    font-size: 14px;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
}

/* Hauptinhalt wächst und schiebt den Footer nach unten */
.site-content {
    flex: 1;
}

.titelbild
{
    display: flex; 
    justify-content: center; 
    align-items: center;
}

.titelbild img {
    max-width: 50%;
    height: auto;
}

/* Anfang */
/* Login Inputs mit Auge etc.  */
.divLogin {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

/* DAS macht eine Zeile */
.login-row {
  display: flex;
  align-items: center;
  gap: 10px; /* Abstand zwischen Feldern */
}

.login_input {
  width: 200px;
  height: 30px;
  box-sizing: border-box;
  padding-right: 38px;
}

/* Passwort-Feld */
.password-wrapper {
  position: relative;
  width: 200px;
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  user-select: none;
  font-size: 16px;
}

/* Button optisch anpassen */
.button_anmeldung {
  height: 30px;
  padding: 0 15px;
  cursor: pointer;
}

.eye-closed::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: black;
  top: 50%;
  left: 0;
  transform: rotate(-45deg);
}

.error_login {
    color: red;
    text-align: center;
    font-size: 20px;
}
/* Ende */

/* Site Impressum */
.impressum {
    color: rgb(248, 247, 247);
    text-align: center;
    font-size: 20px;
}

.impressum a {

    color: white; /* Für alle Links */
}

.impressum a:visited {
    color: white;
  }
/* Site Impressum */

/* Footer */
.site-footer {
    background: #33383f, rgb(42, 47, 53);
    padding: 20px 0;
    text-align: center;
}

.site-footer p {
    margin: 0;
    color: #fff;
    font-size: 14px;
}

/* Footer-Links: immer weiß, nie Unterstrich, keine Änderung */
.site-footer a,
.site-footer a:link,
.site-footer a:visited,
.site-footer a:hover,
.site-footer a:active,
.site-footer a:focus {
    color: #fff !important;
    text-decoration: none !important;
    outline: none;
}
/* Footer */