  body{
    
  }
  html{
    
    margin: 0px;
    padding: 0px;
  }
  .img{
  width: 35%;
}
label {
  display: inline-block;
  margin-bottom: 0 !important;
}
.fondoLogin{
  background: url(imagenes/fondo1.jpg) no-repeat center top;
}
  .cajalogin{
   border-radius: 5px 5px 5px 5px;
   background-color: rgba(255, 255, 255,0.5);
   margin: 20% auto;
 }
 .Labels{
  font-size: 22px;
  font-family: serif;-serif;
  color: black;
}
.CentrarTexto{
  text-align: center;
}
.Inputs{
 font-family: serif;-serif;
 border-radius: 5px 5px 5px 5px;
 width:100%;
}
.Boton-mov {
 font-size: 18px;
 margin: 10% 25%;
 font-family: serif;-serif;
 width: 50%;
 text-align: center;;
}
.Boton-mov span {
  cursor: pointer;
  display: inline-block;
  /*position: relative;*/
  transition: 0.5s;
}

.Boton-mov span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.Boton-mov:hover span {
  padding-right: 25px;
}

.Boton-mov:hover span:after {
  opacity: 1;
  right: 0;
}

