.form-signup {
	padding: 20px 10px;
	display: inline-block;
	background-color: white;
	width: 100%;
}

.form-signup legend {
	font-size: 1.3em;
    margin-bottom: 10px;
    padding: 5px;
}

.form-signup input[type=text]{
	position: relative;
    padding-left: 5px;
    line-height: 200%;
    border: 1px solid silver;
    border-radius: 0;
    display: block;
    width: 100%;
}

.form-signup select {
	display: block;
	width: 100%;
	background: transparent;
	padding: 5px;
	font-size: 16px;
	line-height: 1;;
	border-radius: 0;
	height: 30px;
	-webkit-appearance: none;
}

.input-box {
	margin-bottom: 15px;
}

label.label-file input[type=file] {
	position: fixed;
    top: -1000px;
}

.label-file {
    padding: 8px;
    margin: 2px;
    background: #9D2933;
    display: inline-block;
    cursor: pointer;
}

.label-file:hover {
    background: #BB3C47;
}
.label-file:active {
    background: #9D2933;
}
.label-file span {
    color: white;
}
/*.label-file :valid span {
    color: white;
}*/

.form-signup input[type=submit]  {
	background: #9D2933;
    height: 35px;
    width: 200px;
    margin-top: 10px;
    color: white;
    font-size: 1.5em;
    cursor: pointer;
    padding: 6px 8px;
    border: none;
}

.form-signup input[type=submit]:hover {
	background: #BB3C47;
}

/** VALIDATION */

.form-signup input[type=text].error, .form-signup input[type=password].error{
	border-color: red;
}

.form-signup label.error {
	color: red;
}

.error-message {
    padding: 5px;
    background-color: #EAB0B0;
    border: 1px solid #B32323;
    border-radius: 3px;
    color: #770404;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.success-message {
    padding: 5px;
    background-color: #8ECE79;
    border: 1px solid #4D883A;
    border-radius: 3px;
    color: #1D560A;
    font-size: 1.3em;
    margin-bottom: 10px;
}