.login-wrap {
  width: 100vw;
  height: 100vh;
  position: relative;
  background-size: cover;
  background-repeat: repeat-x;
  background-position: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  .login-form {
    margin: 0 auto;
    width: 380px;
    text-align: center;
    .ant-form-item-explain-error {
      text-align: left;
      font-size: @font-size-text;
    }

    .login-logo {
      margin-bottom: @margin-base;
      overflow: hidden;
      > img {
        max-width: 333px;
      }
    }
    .ant-form-item {
      label {
        color: @font-bg-color;
        font-size: @font-size-text;
      }
      input {
        font-size: @font-size-text;
      }
    }
    .form__item--button {
      background-color: rgb(248, 223, 178);
      height: 40px;
      font-size: @font-size-base;
      color: rgb(158, 96, 14);
      font-weight: 600;
      border-radius: @border-radius-base;
      font-family: @font-family-zt;
      &:hover {
        border-color: #f8dfb2;
      }
    }
    .form__item--remember {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: @font-bg-color;
      font-size: @font-size-text;
      .ant-form-item {
        margin-bottom: 0;
      }
      .form__item--remember-forget {
        cursor: pointer;
        user-select: none;
      }
    }
  }
}
