<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * Copyright inpleworks, Co.
 * contact.css
*/

#contact-form {
	max-width: 768px;
	margin: 0 auto;
}
#contact-form .input-group + .input-group {
	margin-top: 10px;
	text-align: left;
}
#contact-form input[type=text]::-webkit-input-placeholder, 
#contact-form textarea::-webkit-input-placeholder {
	color: #a0a0a0;
}

#contact-form input[type="text"],
#contact-form textarea {
	width: 100%;
	padding: 12px 20px;
    font-size: 14px;
    height: auto;
    resize: none;    
    border-radius: 20px;
    -webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;	
	background: #fff;
	border: 1px solid #c1c1c1;
    color: #999;
}
#contact-form input[type="text"] {
	height: 40px;
}
#contact-form input[type="text"]:focus,
#contact-form textarea:focus {
	border-color: #000; 
	background: #fff;
	color: #000;
}
#contact-form a {
	color: #000;
}</pre></body></html>