#passwordForm {
    background-color: #1c1a1a;
}

#passwordForm h1 {
    text-align: center;
    color: #fff;
    font-size: 42px;
    padding-top: 3%;
}

#passwordForm h1 > span {
    color: yellow;
}

#passwordForm p {
    color: #fff;
    text-align: center;
    font-size: 20px;
    line-height: 1.7;
    margin-left: 30%;
    margin-right: 30%;
}

#passwordForm p > span {
    color: yellow;
}

#passwordForm form {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding-top: 3%;
}

.password-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 3%;
}

.email-label {
    margin-right: 2%;
    color: yellow;
}

.email-input {
    border-radius: 10px;
    outline: 2px solid #FEBF00;
    border: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #e2e2e2;
    outline-offset: 3px;
    padding: 10px 1rem;
    transition: 0.25s;
    margin-bottom: 1%;
  }
  
  .email-input:focus {
    outline-offset: 5px;
    background-color: #fff
  }

  .password-submit {
    cursor: pointer;
  background: yellow;
  color: #000;
  border-radius: 50px;
  border: none;
  max-width: 150px;
  padding: 12px;
  transition: 0.2s;
  font-weight: 600;
    margin-left: 1%;
    transition: 0.2s ease all;
  }

  .pw-submit-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .password-submit:hover {
    scale: 1.1;
  }

  /*New Password Form*/
  .new-password {
    background-color: #1c1a1a;
  }

  .pw-reset {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .pw-label {
    font-size: 24px;
    margin-bottom: 1%;
  }

  /*Responsive CSS Mobile*/
  @media (max-width: 767px) {
    #passwordForm {
      padding-top: 50%;
    }
    
    #passwordForm p {
      margin-right: 3%;
      margin-left: 3%;
    }

    .pw-submit-container {
      padding-top: 3%;
    }

    #passwordForm form {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    #passwordForm form label {
      padding-bottom: 4%;
    }

    #passwordForm form button {
      margin-top: 3%;
    }

    .pw-submit-2 {
      padding-top: 2%;
    }
  }