﻿.login-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 32px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: start;
}

.login-image {
  text-align: center;
  width: 50%;
  height: 100%;
  background-size: 100% 100%;
  background-image: url('../placeholders/loginleftbg.png');
}

.login-image img {
  margin-top: 16%;
  margin-bottom: 56px;
}
.login-image p, .login-image span {
  font-weight: 400;
  font-size: 26px;
  color: #fff;
}
.login-image span.secureicon{
  font-size: 12px;
}

span.secureicon::before {
  content: url(../placeholders/secureicon.svg);
  vertical-align: middle;
}

.login-right {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-dialog-container {
  width: 460px;
}

.login-dialog {
  /*color: var(--main-color-3);*/
}

.login-dialog .primary-button {
  width: 100%;
}

/*.std-dialog-content {
  box-shadow: 0px 0px 20px 0px var(--secondary-color-2);
}*/

#login-logo {
  animation-name: brighten-login-logo;
  animation-duration: 5s;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes brighten-login-logo {
  from {
    opacity: 1;
  }

  to {
    opacity: 0.5;
  }
} 

.footer{
  position: absolute;
  bottom: 20px;
  width: 300px;
  font-size: 11px;
  color: var(--main-color-2); 
}