@charset "utf-8";
/* CSS Document */
#Contactform
{
    min-width:250px;
    max-width:600px;
    margin:auto;
	margin-top:20px;
	margin-bottom:20px;
    font-family: sans-serif;
    padding:20px;
    border:4px solid #DF0019;
}

#Contactform h2
{
    color:#DF0019;
    font-size:35px;
    margin:0;
}

#Contactform p
{
    font-size:15px;
    color:#222222;
}
/*Make all the fields 100% width so they will be responsive to screen size, add spacing to the containing divs and apply some styling to the labels:*/

#Contactform div
{
    margin-top:0px;
	
}

#Contactform input, textarea, button
{
    width:100%;
    border:2px solid #FFC0C1;
    padding:3px 0px 5px 0px;
}

#Contactform label
{
    font-weight:bold;
    font-size:12px;
    color:#222222;


}


#Contactform button
{
    background-color: buttonface;
    color: #DF0019;
    cursor:pointer;
}

#Contactform button:hover
{
    background-color: #FFC0C1;
}



.Contactformrequired
{
    color:#dd6666;
}


.Contactformtext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	padding: 0px;
	line-height:none;
	text-align: left;
}

.Contactformphone {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color:#000000;
	padding: 0px;
	line-height:none;
	text-align: left;
}


