/* Styling for Contact Us page */

.contact_us-container {
  max-width: 98%;
  border-spacing: 2rem;
  position: relative;
  display: table;
  width: 90%;
  margin: 2rem auto 2rem auto;
}



/* Create two unequal columns that floats next to each other */
.column-1 {
  float: left;
  padding: 10px;
  height: auto; /* Should be removed. Only for demonstration */
	/*border: darkred solid 2px;*/
}
.left-1 {
  width: 60%;
	/*border: aqua solid 2px;*/
}
.right-1 {
  width: 40%;
	margin-top: 10px;
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

#contact-submit {
  background-color: forestgreen;
  color: white;
  margin-top: 1rem;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  width: 100%;
  font-size: 3rem;
  cursor: pointer;
}

#contact-submit:hover {
  background-color: #45a049;
}

.error {
  color: darkred;
}
.success {
  color: green;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

/* Responsive columns - one column layout (vertical) on small screens */
@media screen and (max-width: 600px) {
  .right-1 {
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }
  .left-1 {
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }
}
