/* CSS Document */
.container {
	position: relative;
	display: block;
	top: 0px;
	left: 2%;
	width: 96%;
	height: auto;
  min-height: 500px;
	margin: 0px;
	padding: 0px;
}
.formulario {
	position: relative;
	display: block;
	top: 0px;
	left: 0%;
	height: auto;
	margin: 0px;
	padding: 0px;
}
.formTitle {
	position: relative;
	display: block;
	top: 0px;
	left: 0px;
	margin-top: 0px;
	text-align: center;
	font-family: NotoSans-Regular;
	color: #4b5546;
	width: 100%;
}
.formLabel {
	position: relative;
	display: block;
	top: 0px;
	left: 0px;
	height: 50px;
	margin-top: 0px;
	border: none;
	border-radius: 0px;
	text-align: center;
	font-family: NotoSans-Regular;
	color: #4b5546;
	width: 100%;
	padding: 30px 0px 0px 0px;
}
.formText {
	position: relative;
	display: block;
	top: 0px;
	height: 30px;
	margin: 3px 0px 3px 0px;
	background-color: #eff7eb;
  border-width: 2px;
	border-style: solid;
	border-radius: 10px;
	border-color: #808080;
  outline-style: none;
	text-align: center;
	font-family: NotoSans-Regular;
	color: #4b5546;
	padding: 0px 0px 0px 0px;
}
.formTextarea {
	position: relative;
	display: block;
	top: 0px;
	height: 200px;
	margin: 3px 0px 3px 0px;
	background-color: #eff7eb;
  border-width: 2px;
	border-style: solid;
	border-radius: 10px;
	border-color: #808080;
  outline-style: none;
	text-align: left;
	font-family: NotoSans-Regular;
	color: #4b5546;
	padding: 0px 0px 0px 0px;
}
.formSelect, .formSelect > option {
	position: relative;
	display: block;
	top: 0px;
	height: auto;
	margin: 3px 0px 13px 0px;
	background-color: #eff7eb;
  border-style: solid;
	border-radius: 10px;
  border-color: #808080;
	text-align: center;
	font-family: NotoSans-Regular;
	color: #4b5546;
	padding: 0px 0px 0px 0px;
}
.formSubmit {
	position: relative;
	display: block;
	top: 0px;
	height: 40px;
  line-height: 40px;
	margin: 33px 0px 3px 0px;
	background-color: #4b5546;
	border: none;
	border-radius: 10px;
	text-align: center;
	font-family: NotoSans-Regular;
	color: #eff7eb;
	padding: 0px 0px 0px 0px;
  cursor: pointer;
}
.formSubmit:hover {
  background-color: #7d8c75;
}
.foto {
	position: absolute;
	top: 0px;
	right: 5%;
	width: 40%;
	height: 100%;
	margin: 0px;
	padding: 0px;
  background-image: url("/images/contacto.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* dark mode */
@media (prefers-color-scheme: dark) {}

/* CSS Responsive - phones */
@media only screen and (max-width: 768px) {
  .formulario {
    width: 100%;
  }
  .foto {
    display: none;
  }
  .formTitle {
    padding: 0px 0px 0px 0px;
    height: 50px;
    font-size: 10vw;
  }
  .formLabel {
    font-size: 4.4vw;
  }
  .formText {
    left: 5%;
    width: 90%;
    font-size: 4vw;
  }
  .formTextarea {
    left: 5%;
    width: 90%;
    font-size: 4vw;
  }
  .formSelect, .formSelect > option {
    left: 35%;
    width: 30%;
    font-size: 4.4vw;
  }
  .formSubmit {
    left: 35%;
    width: 30%;
    font-size: 4.4vw;
  }
}

/* CSS Responsive - tablets */
@media only screen and (min-width: 768px) {
  .formulario {
    width: 50%;
  }
  .foto {
    display: block;
  }
  .formTitle {
    padding: 20px 0px 0px 0px;
    height: 50px;
    font-size: 4vw;
  }
  .formLabel {
    font-size: 2vw;
  }
  .formText {
    left: 10%;
    width: 80%;
    font-size: 1.4vw;
  }
  .formTextarea {
    left: 10%;
    width: 80%;
    font-size: 1.4vw;
  }
  .formSelect, .formSelect > option {
    left: 35%;
    width: 30%;
    font-size: 2vw;
  }
  .formSubmit {
    left: 35%;
    width: 30%;
    font-size: 2vw;
  }
}

/* CSS Responsive - desktops */
@media only screen and (min-width: 1200px) {
  .formulario {
    width: 50%;
  }
  .foto {
    display: block;
  }
  .formTitle {
    padding: 20px 0px 0px 0px;
    height: 80px;
    font-size: 3vw;
  }
  .formLabel {
    font-size: 1.4vw;
  }
  .formText {
    left: 25%;
    width: 50%;
    font-size: 1vw;
  }
  .formTextarea {
    left: 10%;
    width: 80%;
    font-size: 1vw;
  }
  .formSelect, .formSelect > option {
    left: 40%;
    width: 20%;
    font-size: 1.4vw;
  }
  .formSubmit {
    left: 40%;
    width: 20%;
    font-size: 1.4vw;
  }
}
