@font-face {
  font-family: "Conduit ITC Pro";
  src: url("../fonts/ConduitITCProb.otf");
  font-weight: bold;
}


* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  height: 100%;
  padding: 0px;
  margin: 0px;
  border: none;
  background-color: transparent;
  background-image: url("../img/background.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.container{
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.login-container {
  width: 1105px;
  height: 686px;
  background: #ffffff;
  border-radius: 14px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.login{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}

.login-form {
  position: relative;
  width: 400px;
  height: 100%;
  padding: 85px 55px 45px 55px;
}

.login-image {
  position: relative;
  width: calc( 100% - 400px );
  height: 100%;
  background-image: url("../img/km_login_mockup_de.jpg");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
}

.login-image.login-image-it {
  background-image: url("../img/km_login_mockup_it.jpg");
}

.login-image.login-image-en {
  background-image: url("../img/km_login_mockup_en.jpg");
}

.login-image-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0,0,0,.3);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-end;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
}

.login-image-title {
  font-family: 'Conduit ITC Pro';
  width: 100%;
  color: #ffffff;
  font-size: 61px;
  line-height: 102%;
  font-weight: 700;
  text-transform: uppercase;
  padding-left: 38px;
  padding-right: 38px;
  margin-bottom: 30px;
}

.form-input {
  font-size: 15px;
  color: #484747;
  width: 100%;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid #E9E9F0;
  padding: 10px 5px;
}

.startbox{
 padding: 5px;
 background-color: #eeeeee;
 font-size: 12px;
 line-height: 140%;
}

input {
  margin-top: 30px;
}

input[type=text]:focus,
input[type=password]:focus  {
  outline: none;
  border-bottom: 2px solid #484747;
}

input[type=submit] {
  font-size: 16px;
  color: #fff;
  background-color: #AC0633;
  border: 1px solid #AC0633;
  padding: 10px 50px;
  border-radius: 3px;
  margin-top: 40px;
}

.login-title {
  font-weight: 400;
  font-size: 27px;
  color: #484747;
  margin-top: 80px;
  margin-bottom: 10px;
  line-height: 150%;
}

.footer {
  position: absolute;
  width: max-content;
  bottom: 45px;
  right: 50px;
}

.footer-icon{
  width: 20px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-text{
  padding-left: 15px;
}
.footer-text-top {
  color: #ffffff;
  font-weight: 700;
}
.footer-text-top a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}
.footer-text-bottom {
  color: #9D9D9D;
}
.footer-logo {
  margin-bottom: 45px;
}
.footer-part {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 18px;
}

.footer svg {
  fill: #ffffff;
}

.applogin-container {
  position: absolute;
  bottom: 45px;
}  

.applogin-title {
  margin-bottom: 10px;
  font-size: 13px;
  color: #484747;
}


@media only screen and (max-width: 1850px) and (max-height: 1080px) {
  .header {
    flex-grow: 1;
  }
  .footer {
    position: relative;
    flex-grow: 1;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 1105px;
    bottom: 0px;
    right: 0px;
    justify-content: flex-end;
    align-items: center;
  }
  .footer-part {
    margin-left: 35px;
  }
  .footer-logo {
    margin-right: 15px;
  }
}

@media only screen and (max-width: 1850px) {
  .footer-logo {
    margin-bottom: 0px;
  }
  .footer-part {
    margin-top: 10px;
  }
  .footer {
    bottom: 20px;
    margin-top: 30px;
  }
}

@media only screen and (max-width: 1280px) {
  .login-container{
    width: 910px;
  }
}

@media only screen and (max-width: 1024px) {
  .login-image{
    display: none;
  }
  .login-container{
    width: auto;
  }

}

@media only screen and (max-width: 1280px) and (max-height: 1080px) {
  .footer {
    width: auto;
  }
}


@media only screen and (max-height: 850px) {
  .login-form {
    padding-top: 45px;
  }
  .login-title {
    margin-top: 20px;
  }
}

@media only screen and (max-height: 580px) {
  .footer {
    display: none;
  }
}

