@charset "utf-8";

#contact-form {}
#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
	width: 100%;
	padding: 10px;
    font-size: 12px;
    height: auto;
    resize: none;    
    overflow: hidden;
    -webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;	
	background: #fff;
	border: 1px solid #c1c1c1;
    color: #999;
    transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;	
}
#contact-form textarea {
	resize: vertical;
}
#contact-form input[type="text"]:focus,
#contact-form input[type="email"]:focus,
#contact-form textarea:focus {
	border-color: #000; 
	background: #fff;
	color: #555;
}
#contact-form a {
	color: #555;
}

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

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

}