body { 
    background-color:#eee;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-style:normal;
    font-size: 1em;
    color: #000;
}

div.main-content {
    width:80%;
    max-width: 1000px;
    display:block;
    margin:auto;
    padding:30px;
    background-color:white;
}

hr {
	border-color: #b12c1a;
	margin-bottom: 20px;
    width: 70%;
}

div.row {
    margin-top: 30px;
    /*clear:both;*/
    display:block;
}

div.bordered {
    border-bottom: 1px solid #58585a;
    margin-bottom: 50px;
}

div.column {
    display: flex;
}

div.row span {
    font-weight: bold;
    width: 100%;
    margin-bottom: 15px;
    display:block;
}

div.field {
    margin-bottom:5px;
}


h1 {
    text-align:center;
    font-size:2.5em;
    font-weight: 900;
    width: 100%;
}
h2 {
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

input, textarea:not(#fileUpload) {
	border-radius: 6px;
	border:1px solid #9b9b9d;
}

input#fileUpload {
	border:none !important;
	padding: 0px !important;
	border-radius: 0px !important;
}

input, textarea {
	padding: 10px 12px;
	border-radius: 6px;
	border:1px solid #9b9b9d;
	margin-bottom: 10px;
	color: #rgba(0,0,0,0.8);
}

label {
    vertical-align: top;
    margin-bottom: 8px;
}

input#submit {
	background-color: #b12c1a;
	cursor: pointer;
	transition: 0.3s ease-out;
	text-transform: uppercase;
	font-weight: 900;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	border:none;
	padding: 10px 20px;
}

input#submit:hover {
	background-color: #ef3c42;
	cursor: pointer;
	transition: 0.3s ease-out;
	border-radius: 6px;
}

input[type=text]:not(textarea) {
	margin-left: 8px;
}

.required:after {
    content:" *";
    color: #ef3c42;
  }

  textarea {
    width: 100%;
    max-width: 970px;
    height: 200px;
  }