.navbar {
  padding-top: 10px;
  padding-bottom: 10px;
  background-image: -webkit-linear-gradient(0deg, #005ba7, #009ee2);
  background-image: linear-gradient(90deg, #005ba7, #009ee2);
}

.body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}

.heading {
  color: #185593;
  font-weight: 400;
}

.formulario {
  padding-top: 20px;
}

.etiqueta {
  color: #185593;
  font-weight: 400;
}

.submit-button {
  background-color: #87bc44;
  font-weight: 400;
}

.campo {
  width: 95%;
  margin-left: 40px;
  border-style: none none solid;
  border-width: 1px;
  border-color: #000 #000 #d4dde8;
  border-radius: 0px;
}

.campo:focus {
  border-width: 2px;
  border-color: #185593;
}

.icono-geo {
  position: absolute;
  left: -40px;
}

.icono-geo:hover {
  background-image: url('../images/iconogeolocalizacion.png');
  background-position: 0px 50%;
  background-size: 30px;
  background-repeat: no-repeat;
}

.geo {
  position: relative;
  width: 105%;
  margin-left: -40px;
}

.geo:hover {
  background-image: url('../images/iconogeolocalizacion.png');
  background-position: 0px 50%;
  background-size: 25px;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  .geo:hover {
    background-image: none;
    background-position: 0px 0px;
    background-size: auto;
    background-repeat: repeat;
  }
}

@media (max-width: 767px) {
  .container {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media (max-width: 479px) {
  .submit-button {
    width: 100%;
  }
}

