﻿/*Light Mode*/
body {
  margin: 0;
  background-color: #F5F5F7;
  overflow: hidden;
  background-size: contain;
  background-repeat: no-repeat;
  background-size: 100% auto; /* Stretch the image to 100% width */
  background-image: url("../../../img/login/vd_bg.svg");
}

#txb-password {
  border-radius: 0px 6px 6px 0px;
}

.textbtn a {
  text-decoration: none;
}
.textbtn a:hover {
  color: #4DB380;
  opacity: 0.5;
}

.login-container {
  margin: auto;
  position: absolute;
  top: 0%;
  bottom: 0%;
  right: 0;
  display: inline-block;
  width: 500px;
  max-height: 500px;
  text-align: center;
}
.login-container .login-form-container {
  position: relative;
}
.login-container .login-form-container form {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  left: 500px;
}
.login-container .login-form-container form.visible__no-animation {
  left: 0;
  opacity: 1;
}
.login-container .login-form-container form.slide-in {
  animation: slide-in 700ms ease-in-out forwards;
}
.login-container .login-form-container form.slide-out {
  animation: slide-out 700ms ease-in-out forwards;
}
.login-container .login-form-container form.slide-in-reverse {
  animation: slide-in-reverse 700ms ease-in-out forwards;
}
.login-container .login-form-container form.slide-out-reverse {
  animation: slide-out-reverse 700ms ease-in-out forwards;
}

.password-eye {
  position: absolute;
  right: 0;
  color: #7C7777;
  font-size: 14px;
  margin: 12px;
  cursor: pointer;
  z-index: 2;
}

.row {
  margin: 0px !important;
}

.footer {
  position: absolute;
  bottom: 0px;
  text-align: end;
  width: 100%;
  padding: 20px 60px;
}
.footer .footer-menu ul {
  padding: 0px;
}
.footer .footer-menu li {
  display: inline-block;
  padding-top: 20px;
  margin: 0px 20px;
  cursor: pointer;
}
.footer .footer-menu li:hover a {
  color: #009999;
  opacity: 0.5;
}
.footer .footer-menu li a {
  font-size: 16px;
  color: #009999;
  text-decoration: none;
}

@media only screen and (max-width: 991px) {
  body {
    overflow: auto;
  }
  .left-column {
    display: none;
  }
  .login-container {
    overflow: hidden;
    left: 0;
  }
  .footer {
    bottom: 0px;
    text-align: center;
    width: 100%;
    padding: 20px 0px;
  }
  .is-reponsive {
    width: 100%;
    min-width: 200px;
    max-width: 500px;
    padding: 40px;
  }
}
@keyframes slide-in {
  0% {
    left: 500px;
    opacity: 0;
  }
  50% {
    opacity: 0.5;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
@keyframes slide-out {
  0% {
    opacity: 1;
    left: 0;
  }
  50% {
    opacity: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  }
  100% {
    left: -500px;
  }
}
@keyframes slide-in-reverse {
  0% {
    left: -500px;
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
@keyframes slide-out-reverse {
  0% {
    opacity: 1;
    left: 0;
  }
  50% {
    opacity: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  }
  100% {
    left: 500px;
  }
}
.side-container {
  display: flex;
  justify-content: center;
  align-items: end;
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.side-img {
  position: relative;
  height: 80%;
}

.side-img-small {
  height: 20%;
  width: 20%;
  position: absolute;
  top: 40%;
  right: 70%;
}

.side-img-element {
  position: absolute;
  left: 8%;
  top: 30%;
  height: 80%;
}

/***** Global Slide *****/
/***** Slide Right *****/
.slide-right {
  animation: 3s slide-right;
}

@keyframes slide-right {
  from {
    margin-left: -100%;
  }
  to {
    margin-left: 0%;
  }
}
/***** Slide Left *****/
.slide-left {
  animation: 1s slide-left;
}

@keyframes slide-left {
  from {
    margin-left: 100%;
  }
  to {
    margin-left: 0%;
  }
}
.fade-in {
  animation: fadeIn ease 2s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.spin-anim {
  animation-name: spin;
  animation-duration: 5000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  /* transform: rotate(3deg); */
  /* transform: rotate(0.3rad);/ */
  /* transform: rotate(3grad); */
  /* transform: rotate(.03turn);  */
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
