* {
  font-family: 'Source Sans Pro', sans-serif;
  box-sizing: border-box;
  color: #4D4F5C;
}

html {
  height: 100%;
}

body {
  background: #2e3346; /* Old browsers */
  background: -moz-linear-gradient(198deg,  #2e3346 0%, #0e1119 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(-198deg,  #2e3346 0%,#0e1119 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(198deg,  #2e3346 0%,#0e1119 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e3346', endColorstr='#0e1119',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  display: table;
  margin: 0px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

form {
  margin: auto;
}

#login-container {
  box-sizing: border-box;
  width: 1100px;
  height: 680px;
  background: #ffffff;
  border-radius: 9px;
  margin: auto;
  position: relative;
}

.login-form-container {
  padding: 172px 54px 28px 54px;
  float: left;
  width: 400px;
  height: 100%;
}

.login-image-container {
  width: 700px;
  float: right;
  height: 100%;
  overflow-x: hidden;
  border-top-right-radius: 9px;
  border-bottom-right-radius: 9px;
}

.login-image-container .login-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.login-image-container .login-image img {
  max-height: 100%;
  height: 100%;
}

.form-container{
  margin: auto;
  width: 100%;
}

.login-title h1 {
  margin: 0px;
  color: #3e3e3e;
  font-size: 25px;
  font-weight: 400;
  width: fit-content;
}

.login-title p {
  width: 60%;
  color: #b5b5b5;
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 25px;
}

input:-webkit-autofill {
  -webkit-box-shadow:0 0 0 50px white inset; /* Change the color to your own background color */
  -webkit-text-fill-color: #333;
}

input:-webkit-autofill:focus {
  -webkit-box-shadow: /*your box-shadow*/,0 0 0 50px white inset;
  -webkit-text-fill-color: #333;
}

input::placeholder {
  color: #4a4a4a;
}

input[type=text], input[type=password] {
  outline:none;
  background-color: #ffffff;
  color: #626262 !important;
  font-size: 14px;
  line-height: 16px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #EDEFEF;
  width: 100%;
  height: 36px;
  padding-left: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  /*margin-top: 10px;*/
}

label{
  margin: 0px;
  font-size: 14px;
  color: #8B8B8B;
}

.input-container{
  margin-top: 20px;
  z-index: 20;
}

.input-container .input-half {
  width: 50%;
  float: left;
}

.login-forget {
  text-align: right;
}

.login-forget a, .login-remember label {
  font-size: 14px;
  color: #3e3e3e;
}

.input-half-container:before,
.input-half-container:after {
  content: " ";
  display: table;
}

.input-half-container:after {
  clear: both;
}

.zentriert {
  display:table-cell;
  vertical-align: middle;
}

.button-container {
  width: 100%;
  margin-top: 10px;
}
.button{
  padding: 10px;
  width: 50%;
  background-color: #267EE6;
  border-radius: 5px;
  font-size: 16px;
  border: none;
  color: #FFFFFF;
}

.button:hover{
  background-color: #005ca7;
}

.login-error{
  margin: 8px 0px;
  color: #c00303;
  height: 24px;
  text-align: center;
}


.logo-title {
  width: min-content;
  float: left;
  margin-left: 20px;
  margin-top: 35px;
}

#login-shadow{
  width: 100%;
  height: 754.5447px;
  background: #D8D8D8;
  position: absolute;
  z-index: -1;
  transform: rotate(41.570646080258deg);
  -webkit-transform: rotate(41.570646080258deg);
  left: calc( 50% + 3px );
}

#login-footer {
  position: absolute;
  bottom: 30px;
  left: 30px;
}

#login-footer strong {
  color: #fff;
}

#login-footer p {
  margin: 0px;
  font-size: 14px;
}

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

  #login-container {
    width: 400px;
  }
}