#contact {
	overflow: auto;
}
#contact #form {
	float: left;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
#contact #form h2 {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 30px;
}
#contact #form h1 {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 14px;
}
#contact #form span {
	display: block;
	float: left;
	width: 80px;
	padding-top: 5px;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	line-height: 16px;
	font-weight: bold;
	color: #333;
}
#contact #form input {
	float: left;
	width: 300px;
	color: #333333;
	margin-bottom: 10px;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	line-height: 20px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-color: #CCC;
	border-right-color: #CCC;
	border-bottom-color: #CCC;
	border-left-color: #CCC;
	padding: 10px;
}
#contact #form textarea {
	float: left;
	width: 300px;
	color: #333333;
	margin-bottom: 10px;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	line-height: 20px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-color: #666;
	border-right-color: #CCC;
	border-bottom-color: #CCC;
	border-left-color: #666;
	padding: 10px;
	height: 150px;
}
#contact #form input.nombre {
	background-color: #FFFFFF;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	font-weight: normal;
	font-style: normal;
	line-height: 14px;
}
#contact #form input.phone {
	background-color: #FFFFFF;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	font-weight: normal;
	font-style: normal;
	line-height: 14px;
}
#contact #form input.email {
	background-color: #FFFFFF;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	font-weight: normal;
	font-style: normal;
	line-height: 14px;
}
#contact #form textarea.text {
	background-color: #FFFFFF;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	font-weight: normal;
	font-style: normal;
	line-height: 14px;
}
#contact #form input.captcha {
	background-color: #FFFFFF;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-style: normal;
	line-height: 14px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
#contact #form input.submit {
	width: 65px;
	height: 25px;
	float: right;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	line-height: 16px;
	font-weight: bold;
	border : solid 0px #453d45;
	border-radius : 2px;
	moz-border-radius : 2px;
	-webkit-box-shadow : 0px 0px 2px rgba(0,0,0,1.0);
	-moz-box-shadow : 0px 0px 2px rgba(0,0,0,1.0);
	box-shadow : 0px 0px 2px rgba(0,0,0,1.0);
	color : #3e3e40;
	background : #053494;
	background : -webkit-gradient(linear, left top, left bottom, color-stop(0%,#053494), color-stop(0%,#ffffff), color-stop(100%,#c3c3c9));
	background : -moz-linear-gradient(top, #053494 0%, #ffffff 0%, #c3c3c9 100%);
	background : -webkit-linear-gradient(top, #053494 0%, #ffffff 0%, #c3c3c9 100%);
	background : -o-linear-gradient(top, #053494 0%, #ffffff 0%, #c3c3c9 100%);
	background : -ms-linear-gradient(top, #053494 0%, #ffffff 0%, #c3c3c9 100%);
	background : linear-gradient(top, #053494 0%, #ffffff 0%, #c3c3c9 100%);
	text-align: center;
	vertical-align: middle;
	padding: 0px;
	margin-top: 3px;
	margin-right: 8px;
}
#contact #captcha span{
  width: 44px;
}
#contact #captcha input{
	border: medium none;
	cursor: pointer;
	width: 20px;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(images/captcha.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	text-align: center;
	margin-top: 5px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 0px;
	padding-right: 0.5em;
	padding-bottom: 0px;
	padding-left: 1em;
}
.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  align-items: center;
  justify-content: center;
}

.popup-content {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease-in-out;
}

.popup-content h2 {
  color: #004aad;
  margin-bottom: 10px;
}

.popup-content p {
  color: #333;
  font-size: 15px;
}

.close {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: #666;
}

.close:hover {
  color: #000;
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}
