* {
  font-family: "Avenir", "Helvetica Neue", sans-serif;
  color: #262626;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

button {
  -webkit-appearance: none;
  border: none;
}
.login-details {
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: #fff;
  width: 100%;
}

.welcome-screen {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  background-color: #eef3f7;

}

/*@media screen and (min-width: 480px) {
  .login-details {
      width: 50%;
  }
  .welcome-screen {
    display: block;
    left: 50%;
    width: 50%;
  }

}*/

@media screen and (min-width: 800px) {
  .login-details {
      width: 33%;
  }
  .welcome-screen {
    display: block;
    left: 33%;
    width: 67%;
  }

}

.login-logo {
  display: block;
  width: 300px;
  height: 170px;
  margin-top: 100px;
  margin-left: 50%;
  transform: translateX(-123px);
}


.logo-label {
  font-family: Futura;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 9px;
  text-align: center;
  color: #686868;
  margin-top: 18px;
}

.login-header {
  margin-top: 253px;
  text-align: center;
  font-size: 36px;
  font-weight: 300;
}

.login-text {
  margin: 36px auto 51px;
  font-size: 15px;
  color: #70767d;
  width: 80%;
  text-align: left;
  line-height: 1.5;
}

.login-button {
  margin: 0 auto 32px;
  display: block;
  font-family: "Avenir";
}

.login-button.btn-primary {
  background-color: #0098dc;
  color: #fff;
  border-color: #0098dc;
}

.login-link {
  font-size: 12px;
}

.copyright-text {
    font-size: 12px;
    color: #ced3da;
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
}

.welcome-text {
  text-align: center;
  display: block;
  color: #1b344d;
  opacity: .54;
  font-size: 60px;
  font-weight: 300;
  line-height: 1.2;
}

.welcome-header {
  margin: 137px auto 23px;
}

.welcome-body {
  font-size: 18px;
}

.welcome-background {
  width: 650px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: .04;
}


