@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
}

/*************************************************************************************
/* Page Layout
/*************************************************************************************/
body {
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-image: url("../projekta/portal_mit_neuanmeldung/img/background-login.jpg");
  background-size: cover;
}

#login_mittelteil {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-grow: 1;
  padding-top: 50px;
  padding-bottom: 10px;
}

/*************************************************************************************
/* ENDE Page Layout
/*************************************************************************************/
/*************************************************************************************
/* Kopfleiste
/*************************************************************************************/
#kopfleiste {
  display: flex;
  align-items: center;
  height: 75px;
  padding-left: 15px;
  padding-top: 0;
  padding-bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: none;
  width: unset;
}

/*************************************************************************************
/* ENDE Kopfleiste
/*************************************************************************************/
/*************************************************************************************
/* Login-Karte
/*************************************************************************************/
#login_container {
  background-color: white;
  width: 320px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

#logo-section {
  position: relative;
  background-image: linear-gradient(45deg, #5c6bcb, #00f2ff);
  background-size: 150% 150%;
  background-position: 0 50%;
  border-radius: 8px 8px 0 0;
  color: white;
  text-align: center;
  font-size: 1rem;
  padding-top: 45px;
  padding-bottom: 20px;
  font-weight: 600;
  animation: blauer-verlauf-animation infinite alternate-reverse 3s ease;
}

@keyframes blauer-verlauf-animation {
  from {
    background-position: 0 50%;
  }
  to {
    background-position: 100% 50%;
  }
}
#logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 50%;
  width: 70px;
  height: 70px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translate3d(-50%, -50%, 0);
}

#logo {
  height: 40px;
  width: 40px;
  background: url("../projekta/projekta_wap/img/projekta_wuerfel.png") no-repeat;
  background-size: 40px 40px;
  background-position: center;
}

#login-form {
  padding: 20px 20px 15px;
}

#benutzername_container,
#passwort_container,
#login_button_container {
  padding: 10px;
  margin-bottom: 5px;
  font-weight: bold;
}

#login_button_container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

#benutzername_container .BBLFeld,
#passwort_container .BBLFeld {
  margin-top: 5px;
}

#login_button {
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.2s ease;
}
#login_button:hover {
  text-decoration: underline;
}

#passwort-vergessen {
  margin-top: 20px;
  text-align: right;
}
#passwort-vergessen a {
  color: #a1a1a1;
  text-decoration: none;
}
#passwort-vergessen a:hover {
  text-decoration: underline;
}

/*************************************************************************************
/* ENDE Login-Karte
/*************************************************************************************/
/*************************************************************************************
/* PROJEKTA Apps
/*************************************************************************************/
#projekta-apps-container {
  width: 340px;
  max-height: 121px;
  margin-top: 20px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 19px 35px rgba(0, 0, 0, 0.1), 6px 8px 7px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border: 2px solid #aaa;
}

#projekta_app_gesamt_container {
  height: 100%;
}
#projekta_app_gesamt_container .projekta_app_name {
  color: #5c5c5c;
}

#projekta_app_container {
  display: flex;
  align-items: center;
  height: 100%;
}

#projekta-app-slogan {
  font-weight: 600;
}

#projekta_app_bild_container {
  margin-right: 20px;
}
#projekta_app_bild_container #projekta_app_bild {
  max-height: 100%;
  max-width: 100%;
  min-width: 120px;
  min-height: 72px;
  height: 72px;
}

/*************************************************************************************
/* ENDE PROJEKTA Apps
/*************************************************************************************/
/*************************************************************************************
/* Fußzeile
/*************************************************************************************/
#fussleiste-login {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: #f6f6f6;
  border-top: 1px solid #e5e5e5;
}

/*************************************************************************************
/* ENDE Fußzeile
/*************************************************************************************/

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