.column1 {
display: block;
overflow: hidden;
box-sizing: border-box;
width: 45%;
height: auto;
float: left;
margin-right: 5%;
padding: 6px 8px 0 8px;
}
  .column1 p {
  text-indent: 45px;
  }
  .column1 p::first-letter {
  font-size: 1.5em;
  color: #0de0e2;
  margin-right: 0.1em;
  }

.column2 {
display: block;
overflow: hidden;
box-sizing: border-box;
width: 50%;
height: auto;
float: right;
padding: 10px 8px 0 8px;
}


#lastname { display: none; }

p.resultMessage {
display: block;
text-align: left;
padding: 10px 0;
font-family: Roboto-Reg;
font-size: 1.1em;
color: #cb48fb;
text-decoration: none;
font-weight: 400;
}

.contactFields {
width: 90%;
padding: 8px;
font-family: Roboto-Reg;
font-size: .9em;
color: #edecec;
text-decoration: none;
font-weight: 400;
border: #222f42 1px solid;
background-color:rgba(12,19,29,.4);
}
	.contactFields:focus {
  font-size: 1em;
	color: #ffffff;
	font-weight: 700;
  border: #222f42 1px solid;
  background-color:rgba(12,19,29,.4);
	border: #0de0e2 1px solid;
	box-shadow: 0 0 8px #0de0e2;
	transition: 0.5s;
	}

textarea {
  width: 90%;
  height: 150px; /* Set a default height */
  padding: 8px;
  border: #222f42 1px solid;
  background-color:rgba(12,19,29,.4);
  box-sizing: border-box; /* Include padding and border in the 100% width */
  font-size: .9em; /* Set font size */
  font-family: Roboto-Reg;
  resize: vertical;
}
	textarea:focus {
  font-size: 1em;
	color: #ffffff;
	font-weight: 700;
  border: #222f42 1px solid;
  background-color:rgba(12,19,29,.4);
	border: #0de0e2 1px solid;
	box-shadow: 0 0 8px #0de0e2;
	transition: 0.5s;
	}

span.fileUpload {
display: block;
overflow: hidden;
box-sizing: border-box;
clear: both;
width: 100%;
height: auto;
font-family: Roboto-Reg;
font-size: .70em;
color: #cfcfcf;
text-decoration: none;
text-align: left;
font-weight: 400;
margin: 8px 0 4px 0;
}

::file-selector-button {
font-family: Roboto-Reg;
font-size: .85em;
color: #5d91f8;
text-decoration: none;
text-align: center;
font-weight: 400;
padding: 10px 20px;
border: #222f42 1px solid;
background-color: #0c131d;
cursor: pointer;
}
::file-selector-button:hover {
  background-color: #080c12;
  border: 1px solid #bd27f3;
  color: #bd27f3;
}

input[type=submit] {
font-family: Roboto-Reg;
font-size: .85em;
color: #5d91f8;
text-decoration: none;
text-align: center;
font-weight: 400;
text-transform: uppercase;
letter-spacing: 1px;
line-height: 1;
border: #222f42 1px solid;
background-color: #0c131d;
box-shadow: 0 0 8px #080c12;
cursor: pointer;
width: auto;
height: auto;
padding: 14px 14px;
margin: 8px 0 0 0;
transition: 0.6s;
}
	input[type=submit]:hover {
	box-shadow: 0 0 8px #bd27f3;
	background-color: #080c12;
	border: 1px solid #bd27f3;
	font-size: .9em;
	color: #bd27f3;
	}


@media screen and (max-width: 799px) {
	.column1 {
	clear: both;
	float: none;
	width: 100%;
	margin-right: 0;
  padding: 0 8px 0 8px;
	}
    .column1 p {
    text-indent: 20px;
    }
	.column2 {
	clear: both;
	float: none;
	width: 100%;
	margin-top: 12px;
  padding: 12px 8px 0 8px;
  border-top: #30425d 1px solid;
	}
    .contactFields {
    width: 100%;
    }
}