/*
	SystemModul - Login
*/
.system_login {
  margin: 0 auto;
  width: 100%;
  max-width: var(--content-max-width);
  box-sizing: border-box;
  padding: 0 20px;
}

.login_head {
  border-bottom: 2px solid #fff;
  padding-bottom: 10px;
  margin-bottom: 50px;
}

.system_login .div_table {
  width: 100%;
}

.system_login .div_td {
  vertical-align: top;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.system_login .div_left {
  width: 60%;
  text-align: right;
}

.system_login .div_right {
  width: 40%;
  text-align: left;
  padding-left: 20%;
}

.system_login .input_box {
  margin-left: 31%;
  position: relative;
}

.system_login .feld {
  margin-bottom: 10px;
  height: 50px;
  width: 100%;
  font-size: 18px;
  line-height: 23px;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: rgba(204, 204, 204, 0.2);
}

.system_login .username_box:before,
.system_login .password_box:before {
  content: " ";
  width: 24px;
  height: 50px;
  position: absolute;
  top: 0;
  left: -24px;
  background-color: #646567;
  background-position: center;
  background-repeat: no-repeat;
}

.system_login .username_box:before {
  background-image: url(/images/system/buttons/login_user_icon_weiss.png);
}

.system_login .password_box:before {
  background-image: url(/images/system/buttons/login_password_icon_weiss.png);
}

.system_login .div_right a {
  display: block;
  padding-left: 25px;
  margin-bottom: 10px;
  background-position: left center;
  background-repeat: no-repeat;
}

a.login_link_login {
  background-image: url(/images/system/buttons/login_key_icon_small_hellgrau.png);
}

a.login_link_register {
  background-image: url(/images/system/buttons/login_registration_icon_small_hellgrau.png);
}

a.login_link_forget_pass {
  background-image: url(/images/system/buttons/login_questionmark_icon_small_hellgrau.png);
}

a.login_link_change_pass {
  background-image: url(/images/system/buttons/login_edit_icon_small_hellgrau.png);
}

.reg_hinweis {
  text-align: left;
  margin-bottom: 20px;
}

.system_login .pflichtfeld_box:after {
  content: "*";
  width: 10px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 100%;
}

@media only screen and (max-width: 1024px) {
  .system_login .div_td {
    display: block;
    width: auto;
  }

  .system_login .div_right {
    padding-left: 0;
  }

  .system_login .input_box {
    margin-left: 24px;
  }

  .system_login .div_right a {
    display: inline-block;
    margin-right: 20px;
  }
}
#user_privacy_bg {
  z-index: 0;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: 2s opacity;
}

#user_privacy_bg.active {
  z-index: 9999;
  background-color: rgba(125, 125, 125, 0.5);
  opacity: 1;
}

#user_privacy_popup {
  position: absolute;
  width: 90%;
  max-width: 640px;
  left: 0;
  right: 0;
  top: 50%;
  margin: -200px auto 0;
  min-height: 200px;
  background-color: #fafafa;
  box-sizing: border-box;
  padding: 40px;
  /*text-align: center;*/
  box-shadow: 5px 5px 10px rgba(90, 90, 90, 0.7);
}

#user_privacy_text {
  /*color: #000;*/
}

#user_privacy_text,
#user_privacy_text p {
  line-height: 17px;
}

#user_privacy_text h1 {
  font-size: 17px;
  margin-bottom: 10px;
}

#user_privacy_text ul {
  text-align: left;
  margin: 10px 45px;
}

#user_privacy_text li {
  margin: 7px 0;
}

#user_privacy_linkbox {
  padding-bottom: 40px;
}

#user_privacy_text a,
#user_privacy_link {
  font-weight: bold;
  text-decoration: underline;
}

#user_privacy_buttonbox {
  margin-top: 20px;
}

#user_privacy_button {
  color: #fff;
  background-color: #808080;
  border: 0;
  padding: 5px 10px;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 15px;
  max-width: 100%;
  height: auto;
  white-space: normal;
  width: auto;
}

#user_privacy_button:hover,
#user_privacy_button:active {
  background-color: darkgray !important;
}

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