body {
  background:  #FFF url(../img/plantaF.jpg) no-repeat fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  font-family: "Roboto";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.form {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  width: 280px;
  margin: -140px 0 0 -140px;
  padding: 8px;
  box-shadow: 0 0 3px rgba(250, 172, 88, 0.3);
  border: 2px solid black; /*Anterior color : #FE9A2E*/
}
.form h2 {
  margin: 0 0 10px;
  line-height: 1;
  color: #0000;
  font-size: 20px;
  font-weight: 600;
}
.form input {
  outline: none;
  display: block;
  width: 100%;
  margin: 0 0 7px;
  padding: 8px 12px;
  border: 1px solid yellow; /*Anterior color : #ccc*/
  color: #333;
  font-family: "Roboto";
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  font-wieght: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
.form input:focus {
  color: #333;
  border: 2px solid #F6A81C;
}
.form button {
  cursor: pointer;
  background: black; /*Anterior color : #FE9A2E*/
  width: 100%;
  padding: 10px 15px;
  border: 0;
  color: #fff;
  font-family: "Roboto";
  font-size: 14px;
  font-weight: 400;
}
.form button:hover {
  background: #DF7401;
}
.logo {
  background-image: url(../img/logoMAP.jpg);
  width: 88%; 
  height: 8%;
  border-radius: 71px 71px 71px 71px;
  -moz-border-radius: 71px 71px 71px 71px;
  -webkit-border-radius: 71px 71px 71px 71px;
  border: 0px solid #000000;
  -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
  box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
  position: absolute;
  top: 2%;
  left: 6%;
  z-index: -1;
  animation-name: logo;
  animation-duration: 14s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.imagebox {
  #background-image: url(../img/bottom.jpg);
  position: relative;
  left: 30%;
  width: 50%;
  height: 80%;
  z-index: -1;
}
.pieLine {
	background: #DF7401;
	width:79%;
	height: 5px;
	padding: 0px 0px;
	bottom: 2%;
	position: absolute;
	left: 1%;
	font-family: "Roboto";
	font-size: 14px;
	font-weight: 400;
	text-align: right;
}
.pieTexto {
	background: #DF7401;
	width:17%;
	height: 18px;
	padding: 0px 0px;
	bottom: 1%;
	position: absolute;
	left: 80%;
	font-family: "Roboto";
	font-size: 14px;
	text-align: right;
}
.img {
	background-image: url(../img/mlink.png);
	width:25px;
	height:25px;
	position: absolute;
	bottom: 1%;
	left: 97.5%;
    animation-name: img;
    animation-duration: 20s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
@keyframes logo{
	10%{ -webkit-transform: rotateX(0deg);}
	45%{ -webkit-transform: rotateX(0deg);}
	55% {-webkit-transform: rotateX(0deg);}
	60%{ -webkit-transform: rotateX(360deg);}
	65% { -webkit-transform: rotateX(0deg);}
}
@keyframes imagebox{
	0% { opacity: 1; left: 210px;}
	8% { opacity: 1; left: 210px;}
	10% { opacity: 0; }
    40% { opacity: 0; }
    48% { opacity: 1; left: 1%;}
	54% { opacity: 1; left: 1%;}
	60% { opacity: 0; }
	100% { opacity: 0; }
}
@keyframes img{
	5%{ -webkit-transform: rotate(0deg);}
	55%{ -webkit-transform: rotate(360deg);}
}