* {
  margin: 0;
  padding: 0;
}
body {
  background-color: #00091f !important;
  height: 100vh;
}
.vertical-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 10px;
}

.img-logo {
  width: 45%;
}
@media only screen and (min-width: 1200px) {
  .img-logo {
    width: 20%;
  }
}
.img-register {
  width: 95%;
}
.shine {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.shine:after {
  animation: shine 10s ease-in-out infinite;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  top: -110%;
  left: -210%;
  width: 130%;
  height: 900%;
  opacity: 0;
  transform: rotate(30deg);

  background: rgba(255, 255, 255, 0.13);
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.13) 0%,
    rgba(255, 255, 255, 0.13) 77%,
    rgba(255, 255, 255, 0.5) 92%,
    rgba(255, 255, 255, 0) 100%
  );
}
.shine:active:after {
  opacity: 0;
}

@keyframes shine {
  10% {
    opacity: 1;
    top: -350%;
    left: 0%;
    transition-property: left, top, opacity;
    transition-duration: 0.7s, 0.7s, 0.15s;
    transition-timing-function: ease;
  }
  50% {
    opacity: 0;
    top: -350%;
    left: 0%;
    transition-property: left, top, opacity;
  }
  100% {
    opacity: 0;
    top: -350%;
    left: 0%;
    transition-property: left, top, opacity;
  }
}
