.form-section {
    height: 100vh;
    position: relative;
  }
  
  form {
    align-items:center;
    border-radius: 5vh;
    display: flex;
    flex-direction: column;
    height: 80%;
    justify-content: space-evenly;
    width: 70vw;
  }

  .form-header {
    color: #f7b500;
    position: absolute;
    z-index: 999;
  }

  .button-container {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: 5vh;
  }

  .input-container {
    display: flex;
    flex-direction: row;
    height: 20%;
    justify-content: space-between;
    margin-bottom: 5vh;
    width: 100%;
  }

  .email-container {
    width: 100%;
  }

  .name-container {
    width: 100%;
  }
  
  .message-container {
    height: 50%;
    width: 100%;
  }

  .message-field {
    height: 65%;
    width: 80%;
  }

  .name-field {
    width: 60%;
  }

  .email-field {
    width: 60%;
  }
  
  .name-field, .email-field,
  .message-field {
    background: transparent;
    border: .3vh solid rgba(255, 255, 255, 0);
    border-radius: 5vh;
    box-shadow: 1vh 1vh 0 rgba(255, 255, 255, 0);
    color: #ffffff;
    font-family: mainFont;
    font-size: 2.5vh;
    margin-bottom: 2vh;
    outline: none;
    padding: 2vw;
  }
  
  .name-animation {
    animation: outlineFade 1.5s .1s forwards;
  }

  .message-animation {
    animation: outlineFade 1.5s .5s forwards;
  }

  .submit-animation {
    animation: buttonFade 1.5s 1s forwards;
  }

  textarea {
    height: 90%;
    padding: 3vh;
    resize: none;
    /* width: 50vw; */

  }

  label {
    color: #ffffff;
    display: block;
    font-size: 2vw;
    pointer-events: none;
  }
  
  input[type="submit"] {
    background: transparent;
    border: 5px solid rgba(255, 255, 255, 0);
    border-radius: 45px;
    box-shadow: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 3vh;
    font-weight: 700;
    line-height: 40px;
    outline: none;
    padding: 1vh;
    text-transform: uppercase;
    transition: all 0.4s;
    width: 25vh;
  }

  span.error-form {
    padding: 1vh;
  }

  label.error {
    color: #f7b500;
    font-size: 2.5vh;
  }
  
  input[type="submit"]:hover {
    color: #f7b500;
    transition: all 0.4s;
  }

  input[type="submit"]:active {
    border: 5px solid #f7b500;
    transition: all 0.4s;
  }

  @keyframes outlineFade {
    from {
      border: 5px solid rgba(255, 255, 255, 0.0);
      box-shadow: 10px 10px 0 rgba(255, 255, 255, 0.0);
    }
    to {
      border: 5px solid rgba(255, 255, 255, 0.3);
      box-shadow: 10px 10px 0 rgba(255, 255, 255, 0.3);
    }
  }

  @keyframes buttonFade {
    from {
      border: 5px solid rgba(255, 255, 255, 0);
    }
    to {
      border: 5px solid rgba(255, 255, 255, 0.3);
    }
  }


  @media only screen and (max-width: 400px) {
    label {
      font-size: 2vh;
    }
  }