.main-form {
  font-family: 'Inconsolata', Helvetica, Arial, sans-serif;
  box-sizing: border-box;
  padding: 30px 80px;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  transition: opacity .6s, width 0s linear .6s;
}

.page-title {
  font-family: 'Inconsolata', Helvetica, Arial, sans-serif;
  font-size: 30px;
  line-height: 35px;
  text-align: left;
  margin-bottom: 50px;
  font-weight: 400;
  max-width: 760px;
}

.input-form {
  background: transparent;
  border-bottom: 1px solid #9d9da1;
  color: #000;
  font-size: 13px;
  height: 44px;
  text-align: left;
  transition: border-color .4s;
  width: 280px;
  border-radius: 0;
  border: none;
  border-bottom: solid 1px var(--gray);
  outline: none;
  box-shadow: none;
}

.black-button {
  background: transparent;
  border: none;
  outline: none;
  width: 600px;
  height: 44px;
  text-transform: uppercase;
  border: 1px solid var(--gray);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  color: #0e0e0e;
  text-transform: uppercase;
  transition: all 0.5s ease;
}

.black-button:hover {
  background: var(--blue-dark);
  cursor: pointer;
  color: var(--white);
}

.form-space {
  margin-top: 44px;
  background: none;
  border: 0;
  width: 100%;
  height: 0;
}

.help-bubble {
  margin-top: 10px;
  margin-bottom: 15px;
  position: relative;
  padding: 10px;
  width: 280px;
  color: var(--white);
  background: var(--blue-dark);
}

.help-bubble:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid var(--blue-dark);
  width: 0;
  height: 0;
}

.long-bubble{
  width: 600px !important;  
}

.sub-text{
  font-size: 20px;
}