  #dlg_find_id .disp_title_1 {
      display: block;
  }

  #dlg_find_id .disp_title_2 {
      display: none;
  }

  #dfi_step_2,
  #dfi_step_3 {
      display: none;
  }

  #dlg_find_id {
      width: 400px;
      padding: 20px;
      box-sizing: border-box;
      position: fixed;
  }

  #dlg_find_id input[type='text'],
  #dlg_find_id input[type='password'],
  #dlg_find_id input[type='number'] {
      width: 100%;
      height: 44px;
      border-radius: 8px;
      border: 1px solid #787878;
      display: block;
      padding-left: 16px;
      box-sizing: border-box;
      background-color: #4E4E4E;
  }

  #dlg_find_id .error_msg {
    display: none;
  }

  #dlg_find_id .btn_send_auth_code,
  #dlg_find_id .btn_check_auth_code,
  #dlg_find_id .btn_findid_confirm {
      width: 100%;
      height: 44px;
      border-radius: 8px;
      background: linear-gradient(180deg, #69C9C3 0%, #3F8F8A 100%);
      color: white;
      line-height: 44px;
      cursor: pointer;
      text-align: center;
  }

  @media screen and (max-width: 1023px) {

      #dlg_find_id .disp_title_1 {
          display: none;
      }

      #dlg_find_id .disp_title_2 {
          display: block;
      }

      #dlg_find_id {
          width: 100%;
          max-width: 100%;
          max-height: 100%;
          box-sizing: border-box;
          margin: 0;
          height: 100%;
          position: relative;
          min-height: 400px;
      }

      #dlg_find_id .btn_send_auth_code,
      #dlg_find_id .btn_check_auth_code,
      #dlg_find_id .btn_findid_confirm {
          position: absolute;
          bottom: 20px;
          width: calc(100% - 40px);
      }
  }