@charset "utf-8";

/* Small Buttons */
a.smallbtn2 {
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	background: #2da1ec;
	border-radius: 5px;
	padding: 8px 15px;
}

a.smallbtn2:hover {
	background: #2eacff;
	text-decoration: none;
}

a.smallbtn2:active {
	top: 1px;
}


/* Inputs */
/* Placeholder Styles */

::-webkit-input-placeholder {
 color: #ccc;
 font-weight: lighter;
}

::-moz-input-placeholder {
 color: #ccc;
 font-weight: lighter;
}

/* Default input styles */

input[type=name],
input[type=email],
input[type=password],
input[type=text],
textarea[type=text] {
	font-family: "Helvetica Neue", Helvetica, sans-serif;
	font-size: 18px;
	width: 100%;
	color: #999;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

input[type=name]:hover,
input[type=email]:hover,
input[type=password]:hover,
input[type=text]:hover,
textarea[type=text]:hover {
	outline: none;
	border: 1px solid #bbb;
	box-shadow: none;
}

input[type=name]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=text]:focus,
textarea[type=text]:focus {
	outline: none;
	border: 1px solid #00bce9;
	box-shadow: 0 0 5px #2da1ec;
}

textarea[type=text] {
	height: 200px;
}

input.highlight {
	border: 1px solid #ffcc33;
	box-shadow: 0 0 5px #ffff00;
}

input.error {
	border: 1px solid #dd212b;
	box-shadow: 0 0 5px #ed1b24;
}

