body {
  height: 100%;
  overflow: hidden;
  width: 100% !important;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

h2 {
  color: #50B364;
  font-size: 26px;
}

.backRight {
  position: absolute;
  right: 0;
  width: 50%;
  height: 100%;
  background: #367742;
  background-size: cover;
  background-position: 50% 50%;
}

#back {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -999;
}

.inner-text{
    font-family: manrope;
    font-weight: 300;
}

#slideBox {
  width: 50%;
  max-height: 100%;
  height: 100%;
  overflow: hidden;
  margin-left: 0;
  position: absolute;
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
.topLayer {
  width: 200%;
  height: 100%;
  position: relative;
  left: 0;
  left: -100%;
}

.wrapper {
  display: flex;
  height: 100vh;
}

#content {
  position: relative;
    width: 290px;
    margin: auto;
}

.content {
  width: 300px;
  margin: 0 auto;
  top: 30%;
  position: absolute;
  left: 50%;
  margin-left: -125px;
}

.content h2 {
  color: #51b465;
  font-weight: 300;
  font-size: 26px;
}

.login-form-label{
  color:#f1f1f19c;
  display:block;
  font-size: 17px;
  font-family: 'Manrope';
}

button {
  background: #11b73d8f;
  padding: 10px 30px;
  width: auto;
  font-weight: 200;
  text-transform:  uppercase;
  font-size: 14px;
  color: #fff;
  line-height: 16px;
  letter-spacing: 0.5px;
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1), 0 3px 6px rgba(0,0,0,0.1);
  border: 0;
  outline: 0;
  margin: 15px 15px 15px 0;
  transition: all 0.25s;
}

button:hover {
  background: #17d94a8f;
  box-shadow: 0 4px 7px rgba(0,0,0,0.1), 0 3px 6px rgba(0,0,0,0.1);
}

.off {
  background: none;
  color: #03A9F4;
  box-shadow: none;
}

.right .off:hover {
  background: #eee;
  color: #03A9F4;
  box-shadow: none;
}
.left .off:hover {
  box-shadow: none;
  color: #03A9F4;
  background: #363A3D;
}
input {
  background: transparent;
  border: 0;
  outline: 0;
  border-bottom: 1px solid #6d6d6d;
  font-size: 14px;
  color: white;
  padding: 8px 5px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 3px;
  width: 280px;
}

.copyright{
  font-size: 16px;
}
/* main_tags */

#logo {
    width: 81px;
    margin: 5px auto 20px auto;
    display: block;
}

#logo {
        animation: slowRotate 50s linear infinite;
    }

@keyframes slowRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.copyright {
  color: white;
  display: block;
  text-align: center;
}

.logo-text {
    color: #51b465;
    font-weight: 400;
    font-size: 30px;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
    font-family: manrope;
}

.animation {
  animation-name: move;
  animation-duration: .4s;
  animation-fill-mode: both;
  animation-delay: 2s;
}

.a1 {
  animation-delay: 2s;
}

.a2 {
  animation-delay: 2.1s;
}

.a3 {
  animation-delay: 2.2s;
}

.a4 {
  animation-delay: 2.3s;
}

.a5 {
  animation-delay: 2.4s;
}

.a6 {
  animation-delay: 2.5s;
}

@keyframes move {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-40px);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@keyframes left {
  0% {
    opacity: 0;
    width: 0;
  }

  100% {
    opacity: 1;
    padding: 20px 40px;
    width: 50%;
  }
}

.left {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  animation-name: left;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 1s;
  background: #2C3034;
}

.right {
  flex: 1;
  background-color: black;
  transition: 1s;
  background-image:  url('../images/login_background.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
}


/* media */

@media (max-width: 1024px){
  .left{
    animation-name: None;
    animation-duration: None;
    animation-fill-mode: None;
    width: 100%;
  }
  .right{
    display: none;
  }
  #content{
    width: auto !important;
  }
  .logo-text{
    font-size: 48px;
    margin-bottom: 0px;
  }
  #logo{
    width: 100px;
  }
  .inner-text{
    font-size: 36px;
    text-align: center;
    margin-top: -25px;
  }
  .login-form{
    margin-top: 50px;
  }
  .login-form-label{
    font-size: 28px;
  }
  .copyright{
    font-size: 19px;
  }
  input{
    width: 100%;
    font-size: 20px;
  }
  #login{
    width: 100%;
    height: 60px;
    font-family: manrope;
    font-size: 17px;
    margin: 40px 0px 60px 0px;
  }
}
