main * {
  box-sizing: border-box;
}

main {
  position: relative;
  padding-bottom: 80px;
}

h2 {
  font-weight: lighter;
  text-align: center;
}

div.verticalLine {
  position: absolute;
  left: 66.66%;
  top: 90px;
  width: 2px;
  background-color: #888;
  height: 380px;
}

.right {
  width: 400px;
  padding: 10px 20px;
  background-color: #fff;
  width: 50%;
}

.right div {
  width: 100%;
  height: auto;
  margin: 10px 0;
  padding: 20px 0;
  text-align: center;
  line-height: 150%;
}

hr {
  border: 1px solid #888;
  width: 80%;
}

.left {
  padding: 10px 20px;
  background-color: #fff;
  width: 66.66%;
}

form {
  width: inherit;
  margin: auto;
  padding-bottom: -25px;
  line-height: 150%;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px 10px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

input[type="submit"] {
  display: inline;
  font-size: 16px;
  padding: 14px 60px;
  float: right;
  cursor: pointer;
  margin: 8px 0;
}

@media all and (max-width: 925px) {
  .left,
  .right {
    position: static;
    width: 100%;
  }

  div.verticalLine {
    display: none;
  }
}
