.app-border {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}

.app-container {
  font-family: "VW Head", Arial, Helvetica, sans-serif;
  max-width: 715px;
  padding: 132px 40px;
}

.header {
  padding-bottom: 50px;
}

h1 {
  font-weight: 700;
  font-size: 48px;
  text-align: center;
  padding: 0 0 30px;
  margin: 0;
}

.h1-small {
  font-weight: 300;
}

p {
  font-weight: 300;
  font-size: 24px;
  text-align: center;
  padding: 0;
  margin: 0;
}

.legal {
font-weight: 400;
font-size: 16px;
text-align: center;
}

.fw {
  width:100%;
}

form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  box-sizing: border-box;
}

.input-container {
  padding-bottom: 16px;
}

label {
  font-weight: 400;
  font-family: "VW Text", Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #002D8B;
}

input {
  width: 100%;
  font-family: "VW Text", Arial, Helvetica, sans-serif;
  padding: 15px 0 13px 0;
  margin-bottom: 5px;
  outline: none;
  border: 0;
  border-bottom: 1px solid #DFE4E8;
  font-size: 20px;
}

.invalid input {
  border-bottom: 1px solid #E90029;
}

input:focus {
  border-bottom: 1px solid #002D8B;
  border-radius: 0;
}

.error {
  opacity: 0;
  font-family: "VW Text", Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #E90029;
}

.invalid .error {
  opacity: 1;
}

.submit-container {
  width: calc(100% - 80px);
  padding-bottom: 30px;
  border-bottom: 1px solid #F2F4F6;
  margin: 0 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.submit-button {
  font-family: "VW Text", Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  padding: 5px 36px 7px;
  background: #002051;
  color: #fff;
  border: 0;
  border-radius: 23px;
}

.submit-button:hover {
  cursor: pointer;
}

.legal {
  font-family: "VW Text", Arial, Helvetica, sans-serif;
  text-align: left;
  font-size: 14px;
  line-height: 1.4;
  width: calc(100% - 80px);
  margin: 0 40px 0;
}

@media screen and (max-width: 752px) {
  .app-container {
    padding: 125px 25px 50px;   
  }

  h1 {
    font-size: 32px;
  }
  p {
    font-size: 20px;
  }

  .submit-container {
    width: 100%;
    padding-bottom: 30px;
    margin: 0 0 30px;
    
  }

  .legal {
    font-family: "VW Text", Arial, Helvetica, sans-serif;
    width: 100%;
    margin: 0 0 0;
  }
}