#forget_password {
  width: 85%;
	// height: 78vh;
	min-height: 78vh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  @media only screen and (max-width: 600px) {
    display: block;
  }
  .title {
    font-size: 30px;
    color: #073396;
    font-weight: 500;
  }
  @media only screen and (max-width: 600px) {
    .title {
      font-size: 33px;
    }
  }
  .sub-title {
    font-size: $font-size-normal;
  }
  .login {
    margin-left: 5%;
    width: 30%;
    display: flex;
    flex-flow: column;
    justify-content: center;

    &__title {
      font-size: 25px;
      font-weight: 400;
      color: #073396;
      img {
        height: 23px;
        margin-right: 7px;
        margin-bottom: 5px;
      }
    }

    &__form {
      width: 60%;
      position: relative;

      &--title {
        font-weight: 400;
        margin: 20px 0 10px;
      }
      input {
        background: #fff;
        border-radius: 5px;
        width: 100%;
        padding: 0.5em 1em;
        font-size: $font-size-normal;
        border: 1px solid #d9d9d9;
      }
      input[name="user_login_name"] {
        background: url(../../imgs/icon_email.svg) no-repeat;
        padding-right: 35px;
        background-position: right 10px center;
      }
      input:focus,
      input.valid {
        border-color: #073396;
      }
      input.error {
        border-color: #f33300;
      }
      label.error {
        position: absolute;
        font-weight: 100;
        font-size: 11px;
        color: #f33300;
        width: 100%;
        text-align: right;
        left: 0;
        bottom: 0;
        margin-bottom: -18px;
      }
    }
    @media only screen and (max-width: 600px) {
      &__form {
        width: 100%;
      }
    }
    &__control {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 30px;

      input[type="submit"] {
        border-radius: 30px;
        background: #74b32d;
        padding: 1em 2em;
        color: #fff;
        font-weight: 400;
        font-size: 17px;
        border: 0;
      }
      a {
        text-decoration: underline;
      }
    }
    &__noacc {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border: 1px solid #d9d9d9;
      border-width: 1px 0;
      padding: 30px 0;
      margin-top: 30px;

      &--text {
        color: #073396;
        font-weight: 400;
        font-size: 23px;
      }
      &--botton {
        color: #073396;
        display: inline-block;
        border-radius: 30px;
        border: 2px solid #073396;
        padding: 0.5em 1em;
        font-size: 18px;
        font-weight: 400;
      }
    }
  }
  .submit {
    font-size: $font-size-small;
    font-weight: 400;
    color: #74b32d;
    border: 2px solid #74b32d;
    border-radius: 30px;
    display: flex;
    align-items: center;
		padding: 12px 1.6em;
    min-width: 130px;
    justify-content: center;
    cursor: pointer;
    background: transparent;
  }
  .form-image {
    width: 25%;
    img {
      width: 100%;
    }
  }
  @media only screen and (max-width: 600px) {
    .form-image {
      width: 100%;
      text-align: right;
      img {
        width: 50%;
      }
    }
  }
  .form-text {
    margin: 5%;
  }
  .form-content {
    display: flex;
    align-items: flex-end;
  }
  @media only screen and (max-width: 600px) {
    .form-content {
      display: block;
    }
  }
  .action-form {
    width: 40%;
    margin-left: 4%;
  }
  @media only screen and (max-width: 600px) {
    .action-form {
      width: 100%;
      margin-left: 0;
      margin-top: 50px;
      button {
        float: right;
      }
    }
  }
}
