* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

button {
  background: none;
  outline: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: 'Roboto', sans-serif;
  /*IE FIX*/
  /*display: flex;
  flex-direction: column;*/
}


/*Pie de pagina*/


/* CONTAINER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100% !important;
  min-height: 100vh;
  background: "";
  /*background: url("") no-repeat
  center / cover;*/
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-blend-mode: luminosity;
  color: white;
}
.wrapper:before {
  content:'';
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0,0,0,0.6);
}

.wrapper > * {
  padding: 15px;
}
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
}


/* HEADER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-header {
  background: rgba(51, 105, 30, 0.6);
  margin: 0;
  border-bottom: none;
  z-index: 1;
}


/* MAIN
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  min-height: 350px;
  z-index: 1000;

}
.formulario {
  display: flex;
  justify-content: center;
  text-align: center;
}
.formulario img {
  width: 80%;
}
.form-top {
  margin-top: 20px;
  padding: 10px;
  background: #fff;
  -moz-border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
  text-align: center;
}
.form-top h3 {
  font-weight: 600;
  color: #01602D;
}
h3, h4 {
    font-size: 16px;
  }
.form-top p {
  font-weight: 300;
  color: #888;
}
p, li {
    font-size: 14px;
  }
.form-bottom {
    padding: 10px 15px 15px 15px;
    background: #eee;
    -moz-border-radius: 0 0 4px 4px;
    -webkit-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
    text-align: left;
}
.form-bottom form button.btn {
    width: 100%;
}
button.btn {
    background: #01602D !important;
}
input[type="text"], input[type="password"], textarea, textarea.form-control {
    height: 40px;
    font-size: 14px;
}
button.btn {
    height: 40px;
    font-size: 14px;
    line-height: 0;
  }
/* FOOTER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.footer-social a {
    font-size: 24px;
    color: #fff;
    margin: 4px;
}

.footer-social a:hover {
    color: #e8bb19;
    text-decoration: none;
}

/* MQ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (min-width: 550px) {
  .page-header ul {
    width: auto;
    margin-top: 0;
  }

  .page-header .cta-contact {
    order: 1;
  }

  .page-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: rgba(51, 105, 30, 0.6);
    color: white;
    z-index: 1;
  }

  .page-footer ul {
    margin-bottom: 0;
  }
  .page-footer img {
  display: none;
  }
}

@media screen and (min-width: 768px) {
  body {
    font-size: 14px;
  }
  .page-footer img {
      width: 100%;
      display: block;
  }
  h3 {
    font-weight: 500;
    font-size: 24px;
  }
  h4 {
    font-size: 18px;
  }
  p {
    font-size: 15px;
  }
  li{
    font-size: 16px;
  }
  input[type="text"], input[type="password"], textarea, textarea.form-control {
    height: 50px;
    font-size: 16px;
  }
  button.btn {
    height: 50px;
    font-size: 16px;
    line-height: 50px;
  }
  .form-bottom {
    padding: 15px 20px 20px 20px;
  }
  .list-footer {
    text-align: left;
  }
  .social-login a {
    font-size: 14px;
    color: #fff;
    font-weight: normal;
  }
  .social-login a:hover {
    color: #fff;
    list-style: none;
    font-weight: bold;
  }
}