body{
  background-color: #e1e1e1;
}
.form-wrapper{
  border-radius: 7px;
}
.form-wrapper label{
  font-weight: bold;
}
.errors li{
  list-style: none;
  width: 100%;
  text-align: center;
}
.errors ul{
  padding-left: 0;
  margin-bottom: 0;
}

@media (max-width: 768px){
  .form-wrapper .text-right{
    text-align: center !important;
  }

  .form-wrapper .btn-primary{
    display: block;
    margin: 0 auto;
  }
}
.login_wrap{
  flex-direction: row;
  box-sizing: border-box;
  display: flex;
  place-content: stretch flex-start;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  position: relative;
}
.login_wrap .login_left{
  flex: 1 1 0%;
  box-sizing: border-box;
}
.login_wrap .login_right{
  background: #fff;
  flex: 0 1 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
   }
   .login_wrap .login_right .login-box, .register-box{
    width:500px;
   }
   .bird-wrap-box .bird {
  background-image: url('/public/img/bird-cells.svg');
  background-size: auto 100%;
  width: 88px;
  height: 125px;
  will-change: background-position;
  animation-name: fly-cycle;
  animation-timing-function: steps(10);
  animation-iteration-count: infinite;
  }
  .bird-wrap-box .bird--one {
  animation-duration: 1s;
  animation-delay: -0.5s;
  }
  .bird-wrap-box .bird--two {
  animation-duration: 0.9s;
  animation-delay: -0.75s;
  }
  .bird-wrap-box .bird--three {
  animation-duration: 1.25s;
  animation-delay: -0.25s;
  }
  .bird-wrap-box .bird--four {
  animation-duration: 1.1s;
  animation-delay: -0.5s;
  }
  .bird-wrap-box .bird-container {
  position: absolute;
  top: 20%;
  left: -7.5vw;
  transform: scale(0);
  will-change: transform;
  animation-name: fly-right-one;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  }
  .bird-wrap-box .bird-container--one {
  animation-duration: 15s;
  animation-delay: 0;
  }
  .bird-wrap-box .bird-container--two {
  animation-duration: 16s;
  animation-delay: 1s;
  }
  .bird-wrap-box .bird-container--three {
  animation-duration: 14.6s;
  animation-delay: 9.5s;
  }
  .bird-wrap-box .bird-container--four {
  animation-duration: 16s;
  animation-delay: 10.25s;
  }
  @keyframes fly-cycle {
  100% {
    background-position: -900px 0;
  }
  }
  @keyframes fly-right-one {
  0% {
    left: -10%;
    transform: scale(0.3);
  }
  10% {
    left: 10%;
    transform: translateY(2vh) scale(0.4);
  }
  20% {
    left: 30%;
    transform: translateY(0vh) scale(0.5);
  }
  30% {
    left: 50%;
    transform: translateY(4vh) scale(0.6);
  }
  40% {
    left: 70%;
    transform: translateY(2vh) scale(0.6);
  }
  50% {
    left: 90%;
    transform: translateY(0vh) scale(0.6);
  }
  60% {
    left: 110%;
    transform: translateY(0vh) scale(0.6);
  }
  100% {
    left: 110%;
    opacity: 1;
    transform: translateY(0vh) scale(0.6);
  }
  }
  @keyframes fly-right-two {
  0% {
    left: -10%;
    opacity: 1;
    transform: translateY(-2vh) scale(0.5);
  }
  10% {
    left: 10%;
    transform: translateY(0vh) scale(0.4);
  }
  20% {
    left: 30%;
    transform: translateY(-4vh) scale(0.6);
  }
  30% {
    left: 50%;
    transform: translateY(1vh) scale(0.45);
  }
  40% {
    left: 70%;
    transform: translateY(-2.5vh) scale(0.5);
  }
  50% {
    left: 90%;
    transform: translateY(0vh) scale(0.45);
  }
  51% {
    left: 110%;
    transform: translateY(0vh) scale(0.45);
  }
  100% {
    left: 110%;
    transform: translateY(0vh) scale(0.45);
  }
  }

