#resetpassword {
  height: 78vh;
  display: flex;
  justify-content: center;
  align-items: center;

  .image {
    width: 25%;
    margin-right: 40px;

    img {
      max-width: 100%;
      max-height: 100%;
    }
  }
  .form {
    width: 30%;
    &__title {
      font-size: 35px;
      align-items: center;
      font-weight: 500;
      color: #073396;
      padding-bottom: 15px;
    }
    .formGroup {
      &__title {
        font-size: $font-size-normal;
        font-weight: 400;
        margin-bottom: 10px;
      }
      &__subtitle {
        font-size: $font-size-small;
        margin-bottom: 10px;
      }

      .input-pass {
        position: relative;
        input[type="password"],
        input[type="text"] {
          border-radius: 5px;
          width: 100%;
          padding: 0.5em 1em;
          font-size: $font-size-normal;
          border: 1px solid #d9d9d9;
          // background: url(../../imgs/icon_password.svg) right 10px center no-repeat;
          padding-right: 35px;
          margin-bottom: 20px;
        }

        label.error {
          position: absolute;
          font-weight: 100;
          font-size: 11px;
          color: #f33300;
          width: 100%;
          text-align: right;
          left: 0;
          bottom: 18px;
          margin-bottom: -18px;
        }

        &--img {
          display: flex;
          height: 2.5em;
          position: absolute;
          right: 14px;
          top: 0;
          .showpassword {
            width: 27px;
            cursor: pointer;
          }
        }
      }
    }
    .submit {
      border-radius: 30px;
      background: #74b32d;
      padding: 12px 2em;
      min-width: 100px;
      color: #fff;
      font-weight: 400;
      font-size: $font-size-small;
      border: 0;
    }
  }

  @media only screen and (max-width: 992px) {
    flex-flow: column;
    height: unset;
    .image {
      width: 80%;
      text-align: right;
      margin-right: 0;
      margin-bottom: 20px;

      img {
        width: 50%;
      }
    }
    .form {
      width: 80%;

      &__title {
        font-size: 29px;
      }
      .submit {
        display: block;
        margin: 20px 0;
        float: right;
        padding: 0.5em 2em;
      }
    }
  }
}
