body {
	font-family: Arial, Geneva,Helvetica, sans-serif;
	font-size: 100%;
	background: #2d2d2d; /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover,  #2d2d2d 8%, #0c0c0c 58%, #0b0b0b 80%, #0a0a0a 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(8%,#2d2d2d), color-stop(58%,#0c0c0c), color-stop(80%,#0b0b0b), color-stop(100%,#0a0a0a)); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  #2d2d2d 8%,#0c0c0c 58%,#0b0b0b 80%,#0a0a0a 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  #2d2d2d 8%,#0c0c0c 58%,#0b0b0b 80%,#0a0a0a 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  #2d2d2d 8%,#0c0c0c 58%,#0b0b0b 80%,#0a0a0a 100%); /* IE10+ */
	background: radial-gradient(ellipse at center,  #2d2d2d 8%,#0c0c0c 58%,#0b0b0b 80%,#0a0a0a 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2d2d2d', endColorstr='#0a0a0a',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.wrap{
	margin:0 auto;
	width:80%;
}
/*main*/
.main{
	margin: 3% 6%;
	background: #161515;
	border-radius: 5px;
}
/*maintains*/
.main1{
	padding:3%;
}
/*contact*/
form{
	margin-top: 2%;
}


/* Demo 4 */

.form-4 {
    /* Size and position */
    width: 26%;
    margin: 60px auto 30px;
    padding: 10px;
    position: relative;

}

.form-4 h1 {
	color: #969696;
	text-transform: capitalize;
	font-size: 2em;
	font-weight: normal;
	font-family: 'Anaheim', sans-serif;
	margin-bottom: 6%;
}
.form-4 input[type=text],
.form-4 input[type=password] {
    /* Size and position */
    width: 100%;
    padding: 8px 4px 8px 10px;
    margin-bottom: 15px;

    /* Styles */
	border: 1px solid rgba(63, 63, 63, 0.47);
	background: #C9C9C9;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;

    /* Font styles */
    color: #fff;
    font-size: 13px;
}

/* Placeholder style (from http://stackoverflow.com/questions/2610497/change-an-inputs-html5-placeholder-color-with-css) */

.form-4 input::-webkit-input-placeholder {
    color: rgba(37,21,26,0.5);
    text-shadow: 0 1px 0 rgba(255,255,255,0.15);
}

.form-4 input:-moz-placeholder {
    color: rgba(37,21,26,0.5);
    text-shadow: 0 1px 0 rgba(255,255,255,0.15);
}

.form-4 input:-ms-input-placeholder {
    color: rgba(37,21,26,0.5);
    text-shadow: 0 1px 0 rgba(255,255,255,0.15);
}

.form-4 input[type=text]:hover,
.form-4 input[type=password]:hover {
	border-color: #B1B1B1;
}

.form-4 input[type=text]:focus,
.form-4 input[type=password]:focus,
.form-4 button[type=submit]:focus {
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.64), inset 0 1px 1px rgba(226, 219, 219, 0.41), 0 0 0 3px rgba(230, 227, 227, 0.84);
	outline: none;
}

/* Fallback */

.form-4 button[type=submit] {
	background: #585858;
	background: -moz-linear-gradient(top, #585858 0%, #313131 1%, #2d2d2d 20%, #232323 70%, #1f1f1f 99%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#585858), color-stop(1%,#313131), color-stop(20%,#2d2d2d), color-stop(70%,#232323), color-stop(99%,#1f1f1f));
	background: -webkit-linear-gradient(top, #585858 0%,#313131 1%,#2d2d2d 20%,#232323 70%,#1f1f1f 99%);
	background: -o-linear-gradient(top, #585858 0%,#313131 1%,#2d2d2d 20%,#232323 70%,#1f1f1f 99%);
	background: -ms-linear-gradient(top, #585858 0%,#313131 1%,#2d2d2d 20%,#232323 70%,#1f1f1f 99%);
	background: linear-gradient(to bottom, #585858 0%,#313131 1%,#2d2d2d 20%,#232323 70%,#1f1f1f 99%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#585858', endColorstr='#1f1f1f',GradientType=0 );
	display: -moz-inline-stack;
	display: inline-block;
	vertical-align: middle;
	zoom: 1;
	border: 1px solid #272525;
	line-height: 32px;
	padding: 2px 20px;
	font-weight: 300;
	font-size: 14px;
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
	color: #666666;
	text-shadow: 0 1px 1px rgba(5, 5, 5, 0.47);
	text-decoration: none;
	text-align: center;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-o-border-radius: 3px;
}

.form-4 label {
    display: none;
    padding: 0 0 5px 2px;
    cursor: pointer;
}

.alert-danger {
  background: #ffd4d4;
  border-color: #ff5454;
  color: #ba0000;
}