.buttonl {
  padding: 0;
  }
 
 .buttonl li {
  display: inline;
  }
  
  .buttonl li a {
  font-family: Arial;
  font-size: 11px;
  text-decoration: none;
  float: left;
  padding: 10px;
  background-color: var(--secundario);
  color: #fff;
  }
  
  .buttonl li a:hover {
  background-color: var(--secundariodark);
  margin-top: -2;
  padding-bottom: 12px;
  }
  
  .body-hero{
   position: absolute;
   max-height: 100vh;
   min-width: 100vw;
   font-family: sans-serif;
   font-size: 14px;
   margin-top: 0;
   padding: 0;
   box-sizing: border-box;
   background-image: url(../img/contenedores.jpg);
   background-size: cover;
   background-attachment: fixed;
   background-position: center center;
 }
 
 .body-hero:after{
  content:"";
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: white;
  z-index: -1;
  opacity: .5;
 }
 
 .header-index {
   width: 50%;
   height: 100px;
   margin: 2em auto 1em;
   text-align: center;
 }
 
 .header-index img {
     height: 100%;
   width: auto;
 }
 
 .header-index .img-kg {
   width: 150px;
   height: 150px;
 }
 
 .header-index .img-bi {
   width: 300px;
   height: 150px;
 }
 
 .header-index h1 {
   font-size: 1.5em;
   /* color: #a6e8e8; */
 }
 
 .main-container {
   width: 50%;
   height: 300px;
   margin: 8em auto 0;
   text-align: center;
 }
 
 .index-container {
   width: 30vw;
   height: auto;
   margin: 5em auto 0;
   text-align: center;
   display: flex;
   justify-content: space-around;
   align-items: center;
 }
 
 form {
   width: 100%;
   margin: 0 auto;
   display: block;
 }
 
 label, input {
   display: block;
   width: 100%;
   margin: 5px auto;
   font-size: 1.2em;
 }
 
 label {
   text-align: center;
   /* font-weight: bold; */
   /* color: #a6e8e8; */
 }
 
 input::placeholder{
   color: rgb(191, 191, 191);
   color: #bfbfbf;
   padding: 1em;
 }
 
 input:focus::placeholder{
   color: rgb(112, 112, 112);
   color: #707070;
 }
 
 .user, .password {
   width: 100%;
   border-radius: 5px;
   border: 2px solid #F0F0F0;
   font-size: 1em;
   line-height: 1em;
   padding: 5px;
 }
 
 .user:hover,
 .user:focus,
 .password:hover,
 .password:focus {   
   box-shadow: 1px 2px 4px 1px rgba(0,0,0, .2);
   border: 2px solid #8a9fb5;
   outline: none;
   background: #eff2f5;
 }
 
 .g-recaptcha{
   margin-top: 2.5em;
 }
 
 .index-span {
   position: absolute;
   bottom: 1em;
   right: 1em;
   font-size: .8em;
   color: rgb(200, 200, 200);
 }
 
 .index-span a {
   color: #6babb2;
 }
 
 .alert-msg{
     display: none;
     margin-top: 1em;
     padding: 1em;
     border-radius: 5px;
 }





/* Inputs para login */
/* ======================================================== */
.input-group-jr {
  display: flex;
  height: 40px;
  margin-bottom: 3em;
}
.login-input {
  background: rgba(255, 255, 255, 0.6);
  height: 100%;
  margin: auto;
  padding: 5px 0 5px 15px;
  border: 1.5px solid #498c7b;
  border-right: none;
  border-radius: 5px 0 0 5px;
  color: #3C6B80;
}
.login-input:focus {
  border: 2px solid #5EB59F;
  border-right: none;
  outline: none;
  background: #fff;
  color: #5EB59F;
}
.login-input:focus + .login-icon{
  border: 2px solid #5EB59F;
  border-left: none;
}
.login-input::placeholder{
  color: #404040;
}

.login-icon{
  color: #3C6B80;
  width: auto;
   min-height: 100%;
  max-height: 100%;
  margin: auto;
   padding: 10px 15px;
   background: #f0f0f0;
  border-radius: 0 5px 5px 0;
   border: 1.5px solid #498c7b;
   border-left: none;
}
.login-icon:hover {
  background-color: #5EB59F;
  color: white;
}
.active-icon{
  background-color: #3C6B80;
  color: white;
}



/* RWD */
/* ======================================================== */
@media screen and (max-width: 800px) {
  .index-container {
    width: 70vw;
  }
  .header-index {
    width: 90%;
  }
  .img-kg {
    width: 20px;
    height: 20px;
  }
  .img-bi {
    width: 20px;
    height: 20px;
  }
  .main-container {
    margin-top: 12em;
  }
  .main-container_bi {
    margin-top: 15em;
  }
}
 
@media screen and (orientation: landscape) and (max-width: 800px) {
  .main-container_bi {
    margin-top: 4em;
  }
  .main-container {
    margin-top: 12em;
  }
}
 