/* file import */ /* file import */
/* $radius is the parameter of the function */
html, body {
  height: 100%;
}

.login-web {
  background-image: url(../../images/bg/login-bg.webp);
  background-size: cover;
  position: relative;
  color: #ab99ca;
}

.bg-blue-image {
  background-image: url(../../images/banner-images/login.jpg);
  background-size: cover;
}

@media (min-width: 992px) {
  .goback-link {
    position: fixed;
    right: 0;
    top: 30px;
  }
  .demo-link {
    color: #ffffff !important;
  }
}
.video-play-button {
  position: relative;
  z-index: 10;
  box-sizing: content-box;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 40px;
  height: 40px;
  background: #73b943;
  border-radius: 50%;
  animation: btn-pulse-border 1500ms ease-out infinite;
}
.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 40px;
  height: 40px;
  background: #73b943;
  border-radius: 50%;
  transition: all 200ms;
}
.video-play-button:hover:after {
  background-color: #5c9435;
}
.video-play-button span {
  font-size: 30px;
  color: #fff;
  left: 0;
  display: block;
  position: relative;
  z-index: 3;
  line-height: 40px;
  height: 40px;
  text-align: center;
}

@keyframes btn-pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}/*# sourceMappingURL=login.css.map */