.form_cont {
  padding: 50px 50px 50px;
  min-height: calc(100vh - 160px);
  box-sizing: border-box;
  background: #f5f5f5;
  position: relative;
}


@media (max-width: 1200px) {
  .form_cont {
    padding: 50px 20px 20px;
    min-height: calc(100vh - 200px);
    background: #fff !important;
  }
  .form_cont:after {
    display: none;
  }
}


.form {
  max-width: 500px;
  margin: auto;
  background: #fff;
  padding: 50px;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .form {
    padding: 0;
  }
}

.form a {
  color: inherit;
  text-underline-position: under;
}

.form ul {
  list-style-type: square;
}

.form .errors {
  margin: 10 0 30px;
  
}

.form .errorlist {
  margin: 0;
}

.form .form_label {
  display: block;
  font-size: 17px;
}

.form .input_cont:first-child {
  margin-top: 0;
}

.form .input_cont {
  margin-top: 50px;
}

.form .form_input {
  border: none;
  border-bottom: 1px solid #000;
  font-family: inherit;
  font-size: 20px;
  width: 500px;
  max-width: 100%;
  padding: 10px 0;
  margin: 10px 0;
  box-sizing: border-box;
  outline: none;
  background: none;
  border-radius: 0;
}

.form .form_input::placeholder {
  color: #aaa;
}

.form .form_input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.buttons {
  margin-top: 40px;
  max-width: 500px;
}

.button {
  color: #000;
  background: #fff;
  font-size: 17px;
  padding: 8px 20px;
  border: 1px solid #000;
  text-decoration: none;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  font-family: inherit;
}

.button:hover {
  opacity: 0.6;
}

.submit_button {
  color: #fff;
  background: #000;
  border: 0;
  padding: 10px 20px;
  font-weight: bold;
  float: right;
}

.form a.cancel_button:before {
  content: '';
  background: none;
  width: 0;
  height: 0;
  margin-right: 0;
}

.form_under {
  margin: 50px 0 20px;
}

.text-inline {
  display: inline-block;
}

.text-margin-left {
  float: right;
  margin-top: 35px;
  margin-left: 30px;
}

.helptext {
  margin-top: 10px;
}

