body {
  /*
  background: rgb(27,25,49);
  background: linear-gradient(90deg, rgba(27,25,49,1) 0%, rgba(27,25,70,1) 100%);
  background: rgba(27,25,70,1) url('../images/login-background-large.jpg');
  */
  background: #333440;
  background: linear-gradient(90deg, #333440 0%, #20212B 100%);
  background: #333440 url('../images/App Background/imgAppLogin2560x1600.png');
  background-repeat:no-repeat;
  background-size:cover;
  font-family: "Inter";
}

.version {
  position: absolute;
  bottom: 0px;
  right: 0px;
  margin: 10px;
  color:#404040;
}

.panel-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.login-panel-container {
  width: 35%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-panel-container {
  position: relative;
  width: 65%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-panel-container video {
  position: absolute;
  height: 38vh;
  width: calc(38vh * 1.6);
  object-fit: cover;
}

.video-mpb {
  width:auto;
  height: 50%;
}

.login-panel {
  width: 80%;
  max-width: 250px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-content: space-around;
  align-items: center;
}

.login-panel-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  xmargin-top: 50px;
}

.login-panel-btn {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  xmargin-top: 50px;
  xmargin-bottom: 50px;
}

.login-panel-social {
  width: 100%;
  xmargin-top: 50px;
  xmargin-bottom: 50px;
}

.login-panel-social-icns {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.mt-login-form {
  width: 100%;
  height: 100%;
  display: flex;
}

.mt-login-form .title {
  color:white;
}

.mt-success-message {
  color:#008000;
  font-size: 0.8rem;
  margin-bottom: 5px;
  text-align: center;
  display: none;
}

.mt-error-message {
  /*color:#E00000;*/
  color:#c06d0b;
  font-size: 0.8rem;
  margin-bottom: 5px;
  text-align: center;
  display: none;
}

@media screen and (max-width: 900px) {
  body {
    background: rgb(27,25,49);
    background: linear-gradient(90deg, rgba(27,25,49,1) 0%, rgba(27,25,70,1) 100%);
    background: rgba(27,25,70,1) url('../images/login-background-small.jpg');
  }

  .video-panel-container {
    display: none;
  }

  .login-panel-container {
    width: 90%;
  }

  .login-panel {
    max-width: 500px;
  }
}
