body {
  background-color: #2a4c29 !important;
}

#body_index {
  background-image: url('../images/5.png');
  background: no-repeat center bottom;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: contain;
  height: 100vh;
  width: 100%;
  z-index: 9;

  -webkit-animation: background-image 60s infinite;
  /* Safari 4+ */
  -moz-animation: background-image 60s infinite;
  /* Fx 5+ */
  -o-animation: background-image 60s infinite;
  /* Opera 12+ */
  animation: background-image 60s infinite;
  /* IE 10+, Fx 29+ */
}

#main_container {
  margin-bottom: 100px;
}

@-webkit-keyframes background-image {
  0% {
      background-image: url('../images/5.png');
  }

  25% {
      background-image: url('../images/2.png');
  }

  50% {
      background-image: url('../images/3.png');
  }

  75% {
      background-image: url('../images/4.png');
  }

  100% {
      background-image: url('../images/1.png');
  }
}

@-moz-keyframes background-image {
  0% {
      background-image: url('../images/5.png');
  }

  25% {
      background-image: url('../images/2.png');
  }

  50% {
      background-image: url('../images/3.png');
  }

  75% {
      background-image: url('../images/4.png');
  }

  100% {
      background-image: url('../images/1.png');
  }

}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  #fondo_login_2{
    background-image: url('../images/fondo2.jpg');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: inherit;
    z-index: 9;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
  }
  
  html .login-wrap {
    
    position: relative;
    margin: 0% 0% 0% 0%;
    background: #008a4c;
    width: 350px;
    border-radius: 5px;
    box-shadow: 3px 3px 10px #333;
    padding: 55px;
  }
  html .login-wrap h2 {
    text-align: center;
    font-weight: 200;
    font-size: 2em;
    margin-top: 10px;
    color: white;
  }
  html .login-wrap .form {
    padding-top: 20px;
  }
  html .login-wrap .form input[type="text"],
  html .login-wrap .form input[type="password"],
  html .login-wrap .form button {
    width: 80%;
    margin-left: 10%;
    margin-bottom: 25px;
    height: 40px;
    border-radius: 5px;
    outline: 0;
    -moz-outline-style: none;
  }
  html .login-wrap .form input[type="text"],
  html .login-wrap .form input[type="password"] {
    border: 1px solid #bbb;
    padding: 0 0 0 10px;
    font-size: 14px;
  }
  html .login-wrap .form input[type="text"]:focus,
  html .login-wrap .form input[type="password"]:focus {
    border: 1px solid #3498db;
  }
  html .login-wrap .form a {
    text-align: center;
    font-size: 10px;
    color: #3498db;
  }
  html .login-wrap .form a p {
    padding-bottom: 10px;
  }
  html .login-wrap .form button {
    background: #001d00;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 200;
    cursor: pointer;
    transition: box-shadow .4s ease;
  }
  html .login-wrap .form button:hover {
    box-shadow: 1px 1px 5px #555;
  }
  html .login-wrap .form button:active {
    box-shadow: 1px 1px 7px #222;
  }


  @media only screen and (max-width: 600px) {
    #body_index {
      background-image: url(../images/5.png);
      background: no-repeat center bottom;
      -webkit-background-size: cover;
      -moz-background-size: cover;
      -o-background-size: cover;
      background-size: contain;
      height: 32vh;
      width: 100%;
      z-index: 9;
      -webkit-animation: background-image 60s infinite;
      -moz-animation: background-image 60s infinite;
      -o-animation: background-image 60s infinite;
      animation: background-image 60s infinite;
  }

  #fondo_login_2 {
    background-image: url(../images/fondo2.jpg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: inherit;
    z-index: 9;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
    height: 68vh;
}

  }