* {
  box-sizing: border-box;
}
@import url("https://fonts.googleapis.com/css?family=Muli:300,400,700,800");

html,
body {
  height: 100%;
  font-family: "Muli", sans-serif;
}

.form-container {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  padding: 50px 50px 100px 50px;
  box-shadow: 0 0 60px 0 #8a8a8a;
  background-color: #fff;
  border: 1px solid #b1b1b1;
  min-width: 300px;
  max-width: 700px;
  margin-top: 100px;
  text-align: center;
}

.form-container table {
  width: 100%;
  text-align: left;
}
.form-container table tr td:last-child,
.form-container table tr th:last-child {
  text-align: right;
}

.form-container img {
  max-height: 120px;
  margin-bottom: 120px;
}

.form-container .form-row {
  position: relative;
  margin-bottom: 15px;
}

.form-container .form-row input {
  height: 50px;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #b1b1b1;
  outline: none;
  width: 100%;
  font-size: 16px;
}

.cta {
  background-color: #86754b;
  color: #fff;
  text-align: center;
  padding: 15px 20px;
  border: none;
  font-size: 16px;
  font-weight: 400;
  box-shadow: 0 0 1px #2f2f2f;
  margin-top: 20px;
  cursor: pointer;
}
