.form-contacto {
  background: transparent;
  position: relative;
  overflow: hidden;
}

form {
  background: transparent;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9em;
  padding: 2em;
  height: auto;
  margin: 0 auto;
  border: 1px solid #ccc;
  border-radius: 1em;
}

.jd-recaptcha {
  display: flex;
  align-items: center;
  justify-content: center;
}

.red {
  color: #ff0000;
}

label {
  margin-bottom: 5px;
}

input,
textarea {
  width: 400px;
  box-sizing: border-box;
  padding: 1px 5px;
  border: 1px solid #999;
  border-radius: 2px;
  margin-bottom: 15px;
  resize  : none;
  overflow: auto;
}

@media (max-width: 991px) {
  label {
    width: 250px;
  }

  input,
  textarea {
    width: 250px;
  }
}

@media (max-width: 767px) {
  label {
    width: 300px;
  }

  input,
  textarea {
    width: 300px;
  }
}

@media (max-width: 414px) {
  label {
    width: 240px;
  }

  input,
  textarea {
    width: 240px;
  }
}

textarea {
  vertical-align: middle;
  height: 5em;
}

input:focus,
textarea:focus {
  border-color: #000;
}

.div-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-enviar {
  background: #F00;
  border: 1px solid #F00;
  color: #fff;
  cursor: pointer;
  font-family: "Cookie", cursive;
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 10px;
  transition: 0.5s;
  margin: 10px;
}

.btn-enviar:hover {
  background: none;
  border: 1px solid #000000;
  color: #000000;
  text-decoration: underline;
}

.btn-enviar-trans {
  background: rgba(136, 133, 131, 0.35);
  border: 1px solid #000;
  color: #fff;
  cursor: pointer;
  font-family: "Cookie", cursive;
  font-style: italic;
  text-transform: capitalize;
  font-weight: 300;
  font-size: 26px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 10px;
  transition: 0.5s;
  margin: 10px;
}

.btn-enviar-trans:hover {
  background: #9c6644;
  border: 1px solid #9c6644;
  color: #fff;
  text-decoration: underline;
}

.btn-enviar-light {
  background: #ede0d4;
  border: 1px solid #ede0d4;
  color: #000;
  cursor: pointer;
  font-family: "Cookie", cursive;
  font-style: italic;
  text-transform: capitalize;
  font-weight: 300;
  font-size: 26px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 10px;
  transition: 0.5s;
  margin: 10px;
}

.btn-enviar-light:hover {
  background: none;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: underline;
}
