/* section.search-password */
section.search-password {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
section.search-password .form-wrap {
  width: 30%;
}
section.search-password .form-wrap h2 {
  font-size: 24px;
  color: #006A3F;
  text-align: center;
  margin-bottom: 30px;
}
section.search-password .form-wrap p {
  font-size: 13px;
  color: #878787;
  text-align: center;
  margin-bottom: 20px;
}
section.search-password .form-wrap input {
  padding: 15px;
  width: 100%;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #D8D8D8;
  box-sizing: border-box;
  margin-bottom: 20px;
}
section.search-password .form-wrap button {
  padding: 14px 0;
  box-sizing: border-box;
  font-size: 16px;
  border-radius: 6px;
  width: 100%;
  cursor: pointer;
  transition: all .5s;
  border: 1px solid #006A3F;
  background-color: #006A3F;
  color: #fff;
}
section.search-password .form-wrap button:hover {
  background-color: #006A3F;
}

#resetPassword h3 {
  font-size: 30px;
  line-height: 40px;
}

#resetPassword .go-home {
  display: block;
  text-align: center;
  padding: 14px 0;
  box-sizing: border-box;
  font-size: 18px;
  border-radius: 6px;
  width: 100%;
  cursor: pointer;
  transition: all .5s;
  border: 1px solid #006A3F;
  background-color: #006A3F;
  color: #fff;
}

#sendEmail h3 {
  font-size: 30px;
  line-height: 40px;
}
#sendEmail .go-home {
  display: block;
  text-align: center;
  padding: 14px 0;
  box-sizing: border-box;
  font-size: 18px;
  border-radius: 6px;
  width: 100%;
  cursor: pointer;
  transition: all .5s;
  border: 1px solid #006A3F;
  background-color: #006A3F;
  color: #fff;
}


@media all and (max-width: 1080px) {
  section.search-password .form-wrap {
    width: 60%;
  }
}

@media all and (max-width: 768px) {
  section.search-password .form-wrap {
    width: 90%;
  }
}