@charset "UTF-8";
body {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 Spalten: linke Seite für den Inhalt, rechte Seite für das Bild */
  align-content: center;
  background: linear-gradient(to right, #22272a 50%, transparent 100%);
}
body:after {
  content: "";
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover; /* Bild soll die gesamte Höhe abdecken */
  height: 100vh; /* Stellt sicher, dass das Hintergrundbild den gesamten Viewport in der Höhe abdeckt */
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  z-index: 1;
}
@media (min-width: 400px) {
  body:after {
    width: 50vw;
  }
}

.cms-login, main, footer {
  grid-column: 1; /* Positioniere alle Elemente in der ersten Spalte */
  width: 80%; /* Zentriere den Inhalt */
  margin: 0 auto; /* Horizontal zentrieren */
  color: white; /* Textfarbe weiß, damit sie auf dem dunklen Hintergrund sichtbar ist */
  position: relative;
  z-index: 2;
}

main {
  flex: 1;
}

.app-brand__name {
  margin-bottom: 0.5em;
  color: white;
}

.silverstripe-brand {
  width: 100%;
  margin-top: 0;
  background: white;
  color: #22272a;
}
.silverstripe-brand .powered {
  text-align: center;
}
.silverstripe-brand .cms-login--support {
  text-align: center;
}
@media (min-width: 780px) {
  .silverstripe-brand {
    background: none;
    color: white;
    padding-top: 1em;
  }
}
.silverstripe-brand a {
  color: #22272a;
  text-decoration: underline;
}
.silverstripe-brand a:hover, .silverstripe-brand a:focus {
  text-decoration: none;
}
@media (min-width: 780px) {
  .silverstripe-brand a {
    color: white;
  }
}

#kw-logo {
  display: block;
  width: 20rem;
  height: auto;
  fill: #22272a;
  margin: 0 auto 2rem auto;
}
@media (min-width: 780px) {
  #kw-logo {
    fill: white;
  }
}

.cms-login--image-info {
  position: fixed;
  bottom: 0;
  background: white;
  color: #22272a;
  right: 0;
  padding: 0.25em;
  text-align: right;
}
.cms-login--image-info a {
  color: #22272a;
  text-decoration: underline;
}
.cms-login--image-info a:hover, .cms-login--image-info a:focus {
  text-decoration: none;
}

/*# sourceMappingURL=admin.css.map */
