html {
  height: 100%;
}
body {
  min-height: 100%;
}
.form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-top: 5rem;
}
.form-container > h2 {
  font-size: 2rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin-top: 2rem;
  width: 100%;
}
.form-input-wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  width: 100%;
}
.form-label {
  color: #4d4d4d;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 1rem;
  line-height: 1.2;
}
.text-input {
  height: 50px;
  border-radius: 3px;
  border: 1px solid;
  border-color: #bbb;
  color: #666;
  font-weight: 400;
  font-size: 16px;
  padding: 0 1rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.text-input:hover {
  border-color: #4d4d4d;
  box-shadow: 0 0 0 1px #4d4d4d;
}
.submit-btn {
  background-color: #1c69d4;
  color: #fff;
  height: 50px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 700;
  outline: none;
  margin: 1rem auto;
  transition: all 0.35s ease;
  border: none;
}
.submit-btn:hover {
  cursor: pointer;
  background-color: #1756ae;
}
.submit-redirect {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  justify-content: center;
}
