* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #2c353f !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: 35%;
}

.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;
}

.btn-primary {
  border-color: #a77c3a73 !important;
  color: #443319 !important;
  background: linear-gradient(to bottom, #fbbd6f, #ee9c6a);
}
.btn-primary:hover {
  color: #fff;
  background-color: #ee9c6a !important;
  border-color: #ee9c6a !important;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
  color: white;
}
.btn-block {
  display: block;
  width: 100%;
}

@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;
  }
}