
/* INPUT BOXS
---------------------------------------- */

input, textarea, select {
	padding: 2px;
	border: 1px solid #eaeaea;
	color: #000;
	font-size: 14px;
	width: 100%;
    background: #f5f5f5;
}
input {
    height: 40px;
    line-height: 40px;
}
textarea {
	font-size: 14px;
    padding: 11px;
    height: 202px;
}
input:focus span, textarea:focus span {
	border: 3px solid #000;
}
input.error, textarea.error {border-color: #E0001A;}

.typography label.error {margin-top: 5px; color: #E0001A;}

input.inputf {display: none;}


.submit {
    background: #E0001A;
    display: block;
    color: #ffffff;
    width: 100px;
    font-size: 16px;
    outline: none;
    margin: 0 auto;
    margin-top: 20px;
    font-weight: 400;
    text-transform: uppercase;
    transition: all 300ms linear;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
	height: 40px;
    line-height: 35px;
	border: 1px solid #eaeaea;
	padding: 2px;
	text-align:center;
}

.submit:hover, .submit:focus, .submit:active {
    background: #fe9b00;
    cursor: pointer;
}

.typography  p.validation-error {font-size:12px; color:red; margin-left:5px;}

/* LABELS
---------------------------------------- */
.typography label {
    display: block;
    margin: 20px 0 5px 0;
    color: #000000;
    font-size: 16px;
}

