﻿/* bassic styling */
h1{
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 2.5em;
	text-align: center;
	margin: 25px 0;
}
a{text-decoration: none; color: #333}
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
body{
	font: 12px Arial,Tahoma,Helvetica,FreeSans,sans-serif;
	text-transform: inherit;
	color: #333;
	background: #e7edee;
	width: 100%;
}
.wrap{
	width: 760px;
	margin: 15px auto;
	padding: 20px 25px;
	background: white;
	border: 2px solid #DBDBDB;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	overflow: hidden;
}
.alert{
	padding: 8px 35px 8px 14px;
	margin: 20px 0;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	color: ##036;
  	background-color: #86BBE6;
  	border-color: #eed3d7;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
/* form styling */
input[type=text], input[type=email], input[type=tel], input[type=url], input[type=file], textarea {
	width:60%;
	background: #fff;
	border: 1px solid #ddd;
	font-size: 12px;
	line-height: 14px;
	margin: 0;
	padding: 1px 1px;
	border:1px solid #CCC;
	/* box-shadow: inset 0 1px 2px #eee;	*/
	 margin:2px 0; 
	
}

textarea {
	height:100px;
	max-width:100%;
}
input[type=submit] {
	cursor:pointer;
	width:100%;
	border:none;
	background:#991D57;
	background-image:linear-gradient(bottom, #06C 0%, #039 52%);
	background-image:-moz-linear-gradient(bottom, #06C 0%, #039 52%);
	background-image:-webkit-linear-gradient(bottom, #06C 0%, #039 52%);
	color:#FFF;
	margin:15px 0 5px 0;
	padding:10px;
	border-radius:5px;
}
input[type=submit]:hover {
	background-image:linear-gradient(bottom, #9C215A 0%, #A82767 52%);
	background-image:-moz-linear-gradient(bottom, #9C215A 0%, #A82767 52%);
	background-image:-webkit-linear-gradient(bottom, #9C215A 0%, #A82767 52%);
	-webkit-transition:background 0.3s ease-in-out;
	-moz-transition:background 0.3s ease-in-out;
	transition:background-color 0.3s ease-in-out;
}
input[type=submit]:active {
	box-shadow:inset 0 1px 3px rgba(0,0,0,0.5);
}
input:focus,
textarea:focus {
	outline:0;
	border:1px solid #999;
}
label{
	display: block;
	margin: 5px 0;
	font-weight: 900;
	cursor: pointer;
	text-align: center;
}