/* SAMPLE FORM STYLES FOR SIMPLE PHP CONTACT FORM */
/* Modify to suit your own needs */
/* CSS Code for Contact Forms - www.robertberkebilelaw.com */

#warn_box{
	/* This is the DIV which prints errors at the top of the page during validation */
	border: 1px solid #ccc;
	background-color: #ddd;
	padding: 5px;
	color: #FF0000;
	font-weight: bold;
}

#warn_box ul{
/* This is the UL list of error messages in the 'warn_box' DIV  */
	list-style-type: square;
}

#cont_form_wrapper{
	border: medium ridge #0000FF;
/* This is the div that wraps the form itself. No styles here, but I list it anyway */
}

#contact_form{
	border-collapse: collapse;
}

#contact_form td{
/* These are the cells in the form table */
	padding: 3px;
	vertical-align: top;
}

.warn_msg{
/* These are the table cells which print the individual messages during validation */
	border: 1px solid #ccc;
	background-color: #ddd;
	padding: 3px;
}

.form_label{
/* These are the labels for each form element */
	width: 8em;
	text-align: right;
}

.form_text{
/* These are the 'text' input types in the form */
	width: 15em;
}

.form_txt_area{
/* This is the textarea used in the form */
	width: 22em;
}
