.alerta {
  width: 100%;
  padding: 5px;
  font-size: 14px;
  color: white;
  background: green;
  -webkit-box-shadow: 0px 1px 3px #ccc;
          box-shadow: 0px 1px 3px #ccc;
  margin-bottom: 15px;
  border-radius: 2px;
  text-align: center;
}

.alerta-error {
  width: 100%;
  background: red;
}

@font-face {
  font-family: "Gafata";
  src: url("../fonts/Gafata-Regular.ttf");
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Gafata", Helvetica;
}

body header {
  width: 100%;
  background: #7FCCE8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 2px solid #fff;
}

body header img {
  width: 22%;
  padding: 15px 0px 15px 40px;
}

body header h2 a {
  color: #fff;
  padding-right: 40px;
  text-decoration: none;
}

body header h2 a:hover {
  text-decoration: none;
  color: #fff;
}

body section {
  width: 100%;
  background: url(../img/trompa.jpeg);
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
}

body section .contenedor {
  width: 60%;
  background: rgba(250, 250, 250, 0.8);
  margin: 30px auto;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body section .contenedor h2 {
  margin: 50px auto;
}

body section .contenedor label {
  margin-bottom: 20px;
}

body section .contenedor input[type="text"], body section .contenedor input[type="password"] {
  margin-bottom: 30px;
  padding: 10px;
  background: none;
  border: none;
  border: 2px solid #7FCCE8;
  background: #fff;
  text-align: center;
}

body section .contenedor button {
  margin-bottom: 50px;
  padding: 15px 40px;
  background: none;
  border: none;
  border: 2px solid #7FCCE8;
  color: #7FCCE8;
  -webkit-transition: 1s;
  transition: 1s;
}

body section .contenedor button:hover {
  background: #7FCCE8;
  color: #fff;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  z-index: 2;
}

body footer {
  background: #7FCCE8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  border-top: 1px solid #fff;
}

body footer .info {
  width: 50%;
  text-align: left;
  font-size: 20px;
  color: #fff;
  overflow: hidden;
  padding-left: 15%;
}

body footer .info img {
  padding-top: 30px;
}

body footer .info h5 {
  margin: 0;
  padding: 0;
  margin: 30px 30px 30px 10px;
}

body footer .info h5 i {
  margin-right: 10px;
}

body footer .info h5 a {
  color: #fff;
  text-decoration: none;
}

body footer .mapa {
  width: 50%;
  text-align: center;
  padding: 20px;
}

@media screen and (max-width: 550px) {
  body header {
    text-align: center;
  }
  body header img {
    width: 50%;
    padding: 0;
    margin: 10px auto;
  }
  body section {
    padding-top: 30px;
  }
  body section .contenedor {
    width: 80%;
  }
  body section .contenedor .opciones {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
  }
  body section .contenedor .opciones a {
    width: 100%;
  }
  body footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
  }
  body footer .info {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }
  body footer .mapa {
    width: 80%;
  }
}
/*# sourceMappingURL=estilosLogin.css.map */