@charset "utf-8";

#contact-form {
	max-width: 992px;
	margin: 0 auto;
	text-shadow: none;
}
#contact-form input[type="text"],
#contact-form textarea {
	width: 100%;
	padding: 12px;
    font-size: 14px;
    resize: none;    
    border-radius: 4px;
    -webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;	
	background: #fff;
	border: 1px solid #cbcbcb;
    color: #707070;
}
#contact-form input[type="text"] {
	height: 40px;
}
#contact-form textarea {
	height: 180px;
}
#contact-form input[type="text"]:focus,
#contact-form textarea:focus {
	background: #fff;
	color: #1b1b1b;
}
#contact-form a {
	color: #707070;
}

.xet-privacy {
	width: 100%;
	padding: 10px;
    font-size: 12px;
    height: auto;
    resize: none;    
    border-radius: 5px;
    -webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;	
	background: #fff;
	border: 0;
    color: #707070;
}

/* Device 해상도가 768px 이하만 작동 */
@media (max-width: 767px) {		
	#contact-form input[type="text"],
	#contact-form textarea {
	}

}